Skip to content

Commit

Permalink
更新SQL脚本
Browse files Browse the repository at this point in the history
  • Loading branch information
Codespilot committed Apr 29, 2024
1 parent 0b2d877 commit 3a92906
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<EnablePackageVersionOverride>true</EnablePackageVersionOverride>
<EuoniaPackageVersion>8.1.23</EuoniaPackageVersion>
<EuoniaPackageVersion>8.1.24</EuoniaPackageVersion>
<FluentBlazorPackageVersion>4.6.0</FluentBlazorPackageVersion>
</PropertyGroup>
<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions Documents/SCRIPTS_PGSQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ CREATE TABLE "public"."configuration_item" (
;

CREATE INDEX "IDX_CONFIG_ITEM_FK" ON "public"."configuration_item" USING btree (
"ConfigurationId" "pg_catalog"."int8_ops" ASC NULLS LAST
"ConfigurationId" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE UNIQUE INDEX "IDX_CONFIG_ITEM_UNIQUE" ON "public"."configuration_item" USING btree (
"ConfigurationId" "pg_catalog"."int8_ops" ASC NULLS LAST,
"ConfigurationId" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
"Key" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
```
Expand All @@ -110,7 +110,7 @@ CREATE TABLE "public"."configuration_revision" (
;

CREATE INDEX "IDS_CONFIG_REVISION_FK" ON "public"."configuration_revision" USING btree (
"ConfigurationId" "pg_catalog"."int8_ops" ASC NULLS LAST
"ConfigurationId" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
```

Expand Down

0 comments on commit 3a92906

Please sign in to comment.