AlterTemplatesAddTags::up PHP Method

up() public method

Run the migrations.
public up ( ) : void
return void
    public function up()
    {
        Schema::table('templates', function ($table) {
            $table->string('tags')->after('display_title')->nullable();
        });
    }
AlterTemplatesAddTags