diff --git a/data/schema.mysql.sql b/data/schema.mysql.sql index 60fb859..607451d 100644 --- a/data/schema.mysql.sql +++ b/data/schema.mysql.sql @@ -5,7 +5,7 @@ CREATE TABLE `tbl_users` ( `email` varchar(128) NOT NULL, `activkey` varchar(128) NOT NULL DEFAULT '', `create_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, - `lastvisit` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', + `lastvisit_at` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', `superuser` int(1) NOT NULL DEFAULT '0', `status` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`),