add key word command not fin

This commit is contained in:
Jay
2018-07-13 00:29:41 +08:00
parent ceb522b21f
commit 4c56ff4300
5 changed files with 124 additions and 16 deletions
+11
View File
@@ -0,0 +1,11 @@
-- auto-generated definition
create table key_commands
(
key varchar(100) not null,
"group" varchar(150) default '' :: character varying not null,
message varchar(300) default '' :: character varying not null,
ctime timestamp with time zone default CURRENT_TIMESTAMP not null,
mtime timestamp with time zone default CURRENT_TIMESTAMP not null,
constraint key_commands_key_group_pk
primary key (key, "group")
);