Jump to content
  • 0

Does anyone have this SQL table?


Yukaiii

Question


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  170
  • Reputation:   9
  • Joined:  11/20/13
  • Last Seen:  

Good night team!
Guys, I'm looking for this SQL table... I use an old emulator, and I would like to know if anyone has it or could even be creating it for me...
I don't understand anything about SQL haha.
This is an old time eamod project.
I would be very grateful for any help.

 

image.thumb.png.45dfb773b46be7f6362f76d833ab0380.png

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  76
  • Reputation:   3
  • Joined:  06/27/20
  • Last Seen:  

CREATE TABLE `donationlog` (

  `id` INT(11) NOT NULL AUTO_INCREMENT,

  `account_id` INT(11) NOT NULL,

  `uberpoints` INT(11) NOT NULL,

  `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,

  PRIMARY KEY (`id

`)

);

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  76
  • Reputation:   3
  • Joined:  06/27/20
  • Last Seen:  

Ver se dá certo amigo.

  • Like 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  170
  • Reputation:   9
  • Joined:  11/20/13
  • Last Seen:  

14 hours ago, maciel said:

Ver se dá certo amigo.

Não deu certo amigo.. ate tentei modificar aqui mas sem sucesso.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  170
  • Reputation:   9
  • Joined:  11/20/13
  • Last Seen:  

56 minutes ago, Yukaiii said:

Não deu certo amigo.. ate tentei modificar aqui mas sem sucesso.

Consegui achar ela onde hospedo meu arquivos kkkk Valeu mano

Quote

CREATE TABLE IF NOT EXISTS `donationlog` (
  `account_id` int(10) unsigned NOT NULL,
  `uberpoints` int(10) unsigned NOT NULL DEFAULT '0',
  UNIQUE KEY `account_id` (`account_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...