snipe-it/database/migrations/2015_06_23_070346_make_email_nullable.php

30 lines
506 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
2016-03-25 01:18:05 -07:00
class MakeEmailNullable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('email')->nullable()->change();
});
}
2016-03-25 01:18:05 -07:00
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
2016-03-25 01:18:05 -07:00
}