Browse Source

no message

kuaifan 5 years ago
parent
commit
d8fa9f1306

+ 1 - 1
database/migrations/2020_06_05_165357_create_pre_docs_content_table.php

@@ -18,7 +18,7 @@ class CreatePreDocsContentTable extends Migration
 			$table->increments('id');
 			$table->integer('bookid')->nullable()->default(0)->comment('知识库ID');
 			$table->integer('sid')->nullable()->default(0)->index('IDEX_sid')->comment('章节ID');
-			$table->text('content')->nullable()->comment('内容');
+			$table->longtext('content')->nullable()->comment('内容');
 			$table->string('username', 100)->nullable()->default('');
 			$table->bigInteger('indate')->nullable()->default(0);
 		});

+ 4 - 0
resources/lang/en/general.js

@@ -420,4 +420,8 @@ export default {
     "[语音通话]": "[Voice call]",
     "[视频通话]": "[Video call]",
     "正在协作会员": "Collaborating member",
+    "文本编辑器": "Text Cell",
+    "MD编辑器": "Markdown Cell",
+    "更新提示": "Update",
+    "团队成员(%)更新了内容,<br/>更新时间:%。<br/><br/>点击【确定】加载最新内容。": "Team members (%) updated content, <br/> update time: %. <br/><br/> click \"ok\" to load the latest content.",
 }