From 6dba89e73f9f2171a5c07ee15e857d8885364c74 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Mon, 3 Dec 2018 00:10:17 +0800 Subject: [PATCH] Update PgSql --- .../PostgreSQL/DbMaintenance/PostgreSQLDbMaintenance.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Realization/PostgreSQL/DbMaintenance/PostgreSQLDbMaintenance.cs b/Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Realization/PostgreSQL/DbMaintenance/PostgreSQLDbMaintenance.cs index fc0914da2..fdf7fed4c 100644 --- a/Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Realization/PostgreSQL/DbMaintenance/PostgreSQLDbMaintenance.cs +++ b/Src/Asp.NetCore2/SqlSeverTest/SqlSugar/Realization/PostgreSQL/DbMaintenance/PostgreSQLDbMaintenance.cs @@ -194,9 +194,9 @@ namespace SqlSugar protected override string IsAnyColumnRemarkSql => throw new NotSupportedException(); - protected override string AddTableRemarkSql => "comment on {0} user is '{1}'"; + protected override string AddTableRemarkSql => "comment on table {0} is '{1}'"; - protected override string DeleteTableRemarkSql => "comment on {0} user is ''"; + protected override string DeleteTableRemarkSql => "comment on table {0} is ''"; protected override string IsAnyTableRemarkSql => throw new NotSupportedException(); #endregion