Commit 71d51115 authored by Liang Ding's avatar Liang Ding

🎨 #12764

parent 4b7e9b59
...@@ -97,6 +97,7 @@ public final class V350_360 { ...@@ -97,6 +97,7 @@ public final class V350_360 {
statement.executeUpdate("ALTER TABLE `" + tablePrefix + "page` DROP COLUMN `pageContent`"); statement.executeUpdate("ALTER TABLE `" + tablePrefix + "page` DROP COLUMN `pageContent`");
statement.executeUpdate("ALTER TABLE `" + tablePrefix + "page` DROP COLUMN `pageCommentCount`"); statement.executeUpdate("ALTER TABLE `" + tablePrefix + "page` DROP COLUMN `pageCommentCount`");
statement.executeUpdate("ALTER TABLE `" + tablePrefix + "page` DROP COLUMN `pageCommentable`"); statement.executeUpdate("ALTER TABLE `" + tablePrefix + "page` DROP COLUMN `pageCommentable`");
statement.executeUpdate("ALTER TABLE `" + tablePrefix + "comment` DROP COLUMN `commentOnType`");
statement.close(); statement.close();
connection.commit(); connection.commit();
connection.close(); connection.close();
......
...@@ -144,12 +144,6 @@ ...@@ -144,12 +144,6 @@
"type": "String", "type": "String",
"length": 19 "length": 19
}, },
{
"name": "commentOnType",
"description": "评论的是文章还是页面,文章:article 页面:page",
"type": "String",
"length": 20
},
{ {
"name": "commentSharpURL", "name": "commentSharpURL",
"description": "评论访问路径,带 # 锚点", "description": "评论访问路径,带 # 锚点",
...@@ -246,11 +240,6 @@ ...@@ -246,11 +240,6 @@
"type": "String", "type": "String",
"length": 255 "length": 255
}, },
{
"name": "pageCommentable",
"description": "页面是否可以评论",
"type": "boolean"
},
{ {
"name": "pageOpenTarget", "name": "pageOpenTarget",
"description": "页面打开方式", "description": "页面打开方式",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment