Skip to content

Commit

Permalink
Update scripts/sql/postgre/apolloconfigdb.sql
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Song <nobodyiam@gmail.com>
  • Loading branch information
hezhangjian and nobodyiam authored Mar 15, 2023
1 parent 18d4eb6 commit 69ff653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/sql/postgre/apolloconfigdb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CREATE TABLE apolloconfig."App"
"OrgName" varchar(64) NOT NULL DEFAULT 'default', -- COMMENT '部门名字'
"OwnerName" varchar(500) NOT NULL DEFAULT 'default', -- COMMENT 'ownerName'
"OwnerEmail" varchar(500) NOT NULL DEFAULT 'default', -- COMMENT 'ownerEmail'
"IsDeleted" bit NOT NULL DEFAULT b'0', -- COMMENT '1: deleted, 0: normal'
"IsDeleted" BOOL NOT NULL DEFAULT false, -- COMMENT '1: deleted, 0: normal'
"DeletedAt" BIGINT NOT NULL DEFAULT '0', -- COMMENT 'Delete timestamp based on milliseconds'
"DataChange_CreatedBy" varchar(64) NOT NULL DEFAULT 'default', -- COMMENT '创建人邮箱前缀'
"DataChange_CreatedTime" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- COMMENT '创建时间'
Expand Down

0 comments on commit 69ff653

Please sign in to comment.