AddMoreFieldsToArtistTracks::up PHP Method

up() public method

Run the migrations.
public up ( ) : void
return void
    public function up()
    {
        Schema::table('artist_tracks', function (Blueprint $table) {
            $table->string('title_romanized')->after('title')->nullable();
            $table->integer('display_order')->after('album_id')->nullable();
        });
    }
AddMoreFieldsToArtistTracks