Skip to content

Commit

Permalink
Key ignore case
Browse files Browse the repository at this point in the history
  • Loading branch information
SeriaWei committed Sep 24, 2024
1 parent de81945 commit 1e063f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Database/SQLite/ZKEACMS.sqlite.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ CREATE TABLE [Article] (
, FOREIGN KEY ([ArticleTypeID]) REFERENCES [ArticleType] ([ID]) ON DELETE NO ACTION ON UPDATE NO ACTION
);
CREATE TABLE [ApplicationSetting] (
[SettingKey] nvarchar(50) NOT NULL
[SettingKey] nvarchar(50) NOT NULL COLLATE NOCASE
, [Value] ntext NULL
, [Title] nvarchar(200) NULL
, [Description] nvarchar(500) NULL
Expand Down

0 comments on commit 1e063f3

Please sign in to comment.