更改core中初始化数据字典表时postgreSQL数据库的create_time字段类型

This commit is contained in:
Zhaoyang 2020-03-19 15:49:25 +08:00
parent 258acdf168
commit 3d9a1aefb5
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ create table dictionary (
is_deletable BOOLEAN not null default FALSE,
is_editable BOOLEAN not null default TRUE,
is_deleted BOOLEAN not null default FALSE,
create_time DATE not null default CURRENT_TIMESTAMP,
create_time timestamp not null default CURRENT_TIMESTAMP,
constraint PK_dictionary primary key (id)
);
-- 添加备注