Files
monica/database/migrations/2019_02_20_205744_allow_gender_null.php

21 lines
426 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AllowGenderNull extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('contacts', function (Blueprint $table) {
$table->integer('gender_id')->nullable()->change();
});
}
}