Skip to content

Commit

Permalink
[Improve] t_app_backup ddl improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfboys committed Nov 1, 2024
1 parent ae5b84b commit aaef7b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ create table `t_app_backup` (
`sql_id` bigint default null,
`config_id` bigint default null,
`version` int default null,
`path` varchar(128) collate utf8mb4_general_ci default null,
`path` text collate utf8mb4_general_ci default null,
`description` varchar(255) collate utf8mb4_general_ci default null,
`create_time` datetime default null comment 'create time',
primary key (`id`) using btree
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ create table "public"."t_app_backup" (
"sql_id" int8,
"config_id" int8,
"version" int4,
"path" varchar(128) collate "pg_catalog"."default",
"path" text collate "pg_catalog"."default",
"description" varchar(255) collate "pg_catalog"."default",
"create_time" timestamp(6)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ create table if not exists `t_app_backup` (
`sql_id` bigint default null,
`config_id` bigint default null,
`version` int default null,
`path` varchar(128) default null,
`path` text default null,
`description` varchar(255) default null,
`create_time` datetime default null comment 'create time',
`modify_time` datetime default null comment 'modify time',
Expand Down

0 comments on commit aaef7b4

Please sign in to comment.