Gelp me, bei mysql splaten einfügen

06/17/2015 14:48 36666669#1
hey, ich muss in account.account was hinufügen also ein spalte, aber ich weiß echt niecht wie habe eun befehl bekommen aber weiß nicht was ich damit machen soll

PHP Code:
  `last_voteint(11) DEFAULT NULL
  `
last_iptext
  `
vote_freeint(11) DEFAULT NULL
06/17/2015 14:53 the--fineworld#2
Hallo,

ich GELP dir mal. :awesome:

Geh in deine MySQL Konsole in der Account Datenbank, füge das ein, ENTER und fertig.
06/17/2015 15:10 rollback#3
Code:
ALTER TABLE account
ADD COLUMN (
`last_vote` int(11) DEFAULT NULL,  
 `last_ip` text,  
 `vote_free` int(11) DEFAULT NULL
);
allerdings rate ich von nullwerten ab.