mtfosbot_schema/20180815-1.sql

8 lines
312 B
MySQL
Raw Normal View History

2018-09-19 12:22:33 +00:00
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
);