gq 7 年之前
父节点
当前提交
3552cf8220
共有 1 个文件被更改,包括 33 次插入0 次删除
  1. 33 0
      server/database/migrations/2017_11_04_143802_change_phone_to_user_info_table.php

+ 33 - 0
server/database/migrations/2017_11_04_143802_change_phone_to_user_info_table.php

@@ -0,0 +1,33 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class ChangePhoneToUserInfoTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('user_info', function (Blueprint $table) {
+            $table->dropUnique('user_info_phone_unique');
+            $table->char('phone',11)->default('')->change();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('user_info', function (Blueprint $table) {
+            //
+        });
+    }
+}