AddMaxEntriesToContests::up PHP Method

up() public method

Run the migrations.
public up ( ) : void
return void
    public function up()
    {
        Schema::table('contests', function (Blueprint $table) {
            $table->tinyInteger('max_entries')->after('type')->default(1);
        });
    }
AddMaxEntriesToContests