AddDescriptionToAchievements::up PHP Method

up() public method

Run the migrations.
public up ( ) : void
return void
    public function up()
    {
        Schema::table('osu_achievements', function ($table) {
            $table->text('description')->nullable()->after('name');
        });
    }
AddDescriptionToAchievements