更改core中初始化数据字典表时postgreSQL数据库的create_time字段类型
This commit is contained in:
parent
258acdf168
commit
3d9a1aefb5
|
@ -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)
|
||||
);
|
||||
-- 添加备注
|
||||
|
|
Loading…
Reference in New Issue