AddEntityAccessControls::up PHP Method

up() public method

Run the migrations.
public up ( ) : void
return void
    public function up()
    {
        Schema::table('images', function (Blueprint $table) {
            $table->integer('uploaded_to')->default(0);
            $table->index('uploaded_to');
        });
        Schema::table('books', function (Blueprint $table) {
            $table->boolean('restricted')->default(false);
            $table->index('restricted');
        });
        Schema::table('chapters', function (Blueprint $table) {
            $table->boolean('restricted')->default(false);
            $table->index('restricted');
        });
        Schema::table('pages', function (Blueprint $table) {
            $table->boolean('restricted')->default(false);
            $table->index('restricted');
        });
        Schema::create('restrictions', function (Blueprint $table) {
            $table->increments('id');
            $table->integer('restrictable_id');
            $table->string('restrictable_type');
            $table->integer('role_id');
            $table->string('action');
            $table->index('role_id');
            $table->index('action');
            $table->index(['restrictable_id', 'restrictable_type']);
        });
    }
AddEntityAccessControls