fix 修复 sqlserver 脚本字符串长度问题

feature/model
疯狂的狮子Li 1 year ago
parent 8bff33d672
commit 6bbe11d494

@ -3085,8 +3085,8 @@ GO
CREATE TABLE sys_client CREATE TABLE sys_client
( (
id bigint NOT NULL, id bigint NOT NULL,
client_id nvarchar(20) DEFAULT '' NULL, client_id nvarchar(64) DEFAULT '' NULL,
client_key nvarchar(255) DEFAULT '' NULL, client_key nvarchar(32) DEFAULT '' NULL,
client_secret nvarchar(255) DEFAULT '' NULL, client_secret nvarchar(255) DEFAULT '' NULL,
grant_type nvarchar(255) DEFAULT '' NULL, grant_type nvarchar(255) DEFAULT '' NULL,
device_type nvarchar(32) DEFAULT '' NULL, device_type nvarchar(32) DEFAULT '' NULL,

@ -234,8 +234,8 @@ GO
CREATE TABLE sys_client CREATE TABLE sys_client
( (
id bigint NOT NULL, id bigint NOT NULL,
client_id nvarchar(20) DEFAULT '' NULL, client_id nvarchar(64) DEFAULT '' NULL,
client_key nvarchar(255) DEFAULT '' NULL, client_key nvarchar(32) DEFAULT '' NULL,
client_secret nvarchar(255) DEFAULT '' NULL, client_secret nvarchar(255) DEFAULT '' NULL,
grant_type nvarchar(255) DEFAULT '' NULL, grant_type nvarchar(255) DEFAULT '' NULL,
device_type nvarchar(32) DEFAULT '' NULL, device_type nvarchar(32) DEFAULT '' NULL,

Loading…
Cancel
Save