(fix)(project):modify the s2_app table DDL in sql-update.sql (#574)

Co-authored-by: caihaixin
This commit is contained in:
Chx
2023-12-27 18:56:11 +08:00
committed by GitHub
parent 40c86810bb
commit cf2b4bfb5c

View File

@@ -155,12 +155,12 @@ CREATE TABLE `s2_app`
description VARCHAR(255),
status INT,
config TEXT,
end_date TIMESTAMP,
end_date datetime,
qps INT,
app_secret VARCHAR(255),
owner VARCHAR(255),
created_at TIMESTAMP,
created_by VARCHAR(255),
updated_at TIMESTAMP,
updated_by VARCHAR(255)
);
`created_at` datetime null,
`updated_at` datetime null,
`created_by` varchar(255) null,
`updated_by` varchar(255) null
)ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;