From 91c22ce1fb84cf994b2c4ccf04378bdc5ab3676f Mon Sep 17 00:00:00 2001 From: Mycroft Date: Sat, 10 Sep 2022 04:59:52 +0100 Subject: [PATCH] fix(legacy.sql): Heavy Bob missed a Comma --- [SQL]/legacy.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[SQL]/legacy.sql b/[SQL]/legacy.sql index a838b9df..e9d30e03 100644 --- a/[SQL]/legacy.sql +++ b/[SQL]/legacy.sql @@ -399,7 +399,7 @@ CREATE TABLE `users` ( `is_dead` tinyint(1) DEFAULT 0, `id` int(11) NOT NULL, `disabled` TINYINT(1) NULL DEFAULT '0', - `last_property` varchar(255) DEFAULT NULL + `last_property` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `last_seen` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB;