blob: a6a8a394a10f738291e4f38ce8562a609fdc5831 (
plain)
1
2
3
4
5
|
alter table users add autologin integer DEFAULT '0' NOT NULL;
alter table users add theme varchar(128) DEFAULT 'default.css' NOT NULL;
alter table users add attempt_failed integer DEFAULT 0 NOT NULL;
alter table users add attempt_ip varchar(39) DEFAULT '' NOT NULL;
alter table users add attempt_clock integer DEFAULT 0 NOT NULL;
|