refactor(db): retain scheme start time as text

This commit is contained in:
2026-08-03 11:18:38 +08:00
parent c126e99b60
commit 87d922ea61
2 changed files with 1 additions and 17 deletions
+1 -1
View File
@@ -9,6 +9,6 @@ create table scheme_list (
scheme_type varchar(32) not null,
username varchar(32) not null,
create_time TIMESTAMP WITH TIME ZONE not null DEFAULT date_trunc('minute', CURRENT_TIMESTAMP),
scheme_start_time TIMESTAMP WITH TIME ZONE not null,
scheme_start_time varchar(50) not null,
scheme_detail JSON
)