From 3d7547007a0706da966584839cacfb8be37723fb Mon Sep 17 00:00:00 2001 From: shockrah Date: Fri, 7 Feb 2020 15:17:28 -0800 Subject: [PATCH] updated table description --- server/migrations/2020-02-04-083551_users/up.sql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/migrations/2020-02-04-083551_users/up.sql b/server/migrations/2020-02-04-083551_users/up.sql index 0b9f2da..b8c2418 100644 --- a/server/migrations/2020-02-04-083551_users/up.sql +++ b/server/migrations/2020-02-04-083551_users/up.sql @@ -1,4 +1,8 @@ --- Your SQL goes here +-- id: simple id tracking users +-- username: default name that users have to display +-- display: used as a non-unique eye candy for users +-- password: yea +-- email: used for signing in to the server CREATE TABLE IF NOT EXISTS `users` ( `id` bigint NOT NULL auto_increment, `username` varchar(255) NOT NULL,