LoginSignup
2
0

More than 5 years have passed since last update.

tips Laravel5.4のmigrationでnullableに変更できない時

Last updated at Posted at 2017-05-31
class ChangeNullableFooColnumBarTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('bar', function (Blueprint $table) {
            $table->text('hoo')->nullable()->change();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('bar', function (Blueprint $table) {
            $table->text('hoo')->nullable(false)->change();
        });
    }
}

nullable(false)->change()
というミニTipsでした。

謝謝

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0