1. add response message

2. add account schema
This commit is contained in:
Jay
2018-08-15 00:15:28 +08:00
parent c072d18c36
commit 15b54b9c87
5 changed files with 42 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
CREATE TABLE public.account
(
id uuid DEFAULT public.uuid_generate_v4() PRIMARY KEY NOT NULL,
account varchar(100) NOT NULL,
password varchar(200) NOT NULL,
ctime timestamp with time zone DEFAULT current_timestamp NOT NULL,
mtime timestamp with time zone DEFAULT current_timestamp NOT NULL
);