AddMaxEntriesToContests::up PHP Méthode

up() public méthode

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