瀏覽代碼

删除sql

visuddhinanda 4 年之前
父節點
當前提交
7dc1ee85d8
共有 1 個文件被更改,包括 0 次插入13 次删除
  1. 0 13
      database/migrations/2022_01_20_135745_create_channels_table.php

+ 0 - 13
database/migrations/2022_01_20_135745_create_channels_table.php

@@ -13,19 +13,6 @@ class CreateChannelsTable extends Migration
      */
     public function up()
     {
-		/*
-			uid VARCHAR (36) NOT NULL, 
-			type TChannelType  NOT NULL DEFAULT('translation'),
-			owner_uid  VARCHAR (36) NOT NULL, 
-			editor_id BIGINT NOT NULL,
-			name VARCHAR (64), 
-			summary VARCHAR (1024),
-			status INTEGER  NOT NULL DEFAULT(10), 
-			lang VARCHAR (16), 
-			setting TEXT,
-			create_time BIGINT NOT NULL, 
-			modify_time BIGINT NOT NULL, 
-		*/
         Schema::create('channels', function (Blueprint $table) {
             $table->bigInteger('id')->primary();
 			$table->string('uid',36)->uniqid()->index();