Update schema.sql

This commit is contained in:
Sławek 2017-05-05 07:41:52 +02:00 committed by GitHub
parent aa90a74145
commit 729944006e

View File

@ -1,7 +1,7 @@
CREATE TABLE `myaac_account_actions` CREATE TABLE `myaac_account_actions`
( (
`account_id` INT(11) NOT NULL, `account_id` INT(11) NOT NULL,
`ip` INT(11) NOT NULL DEFAULT '', `ip` INT(11) NOT NULL DEFAULT 0,
`date` INT(11) NOT NULL DEFAULT 0, `date` INT(11) NOT NULL DEFAULT 0,
`action` VARCHAR(255) NOT NULL DEFAULT '', `action` VARCHAR(255) NOT NULL DEFAULT '',
KEY (`account_id`) KEY (`account_id`)
@ -233,4 +233,4 @@ CREATE TABLE `myaac_visitors`
`lastvisit` INT(11) NOT NULL DEFAULT 0, `lastvisit` INT(11) NOT NULL DEFAULT 0,
`page` VARCHAR(100) NOT NULL, `page` VARCHAR(100) NOT NULL,
UNIQUE (`ip`) UNIQUE (`ip`)
) ENGINE = MyISAM; ) ENGINE = MyISAM;