gq 7 سال پیش
والد
کامیت
d9fa16490b
1فایلهای تغییر یافته به همراه0 افزوده شده و 33 حذف شده
  1. 0 33
      server/database/migrations/2017_11_04_143802_change_phone_to_user_info_table.php

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

xqd
@@ -1,33 +0,0 @@
-<?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) {
-            //
-        });
-    }
-}