AddDescriptionToAchievements::up PHP 메소드

up() 공개 메소드

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