AddLengthToArtistTracks::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->integer('length')->after('bpm');
        });
    }
AddLengthToArtistTracks