diff --git a/database/migrations/2024_04_20_214441_add_egg_var_sort.php b/database/migrations/2024_04_20_214441_add_egg_var_sort.php new file mode 100644 index 000000000..f1a4346cd --- /dev/null +++ b/database/migrations/2024_04_20_214441_add_egg_var_sort.php @@ -0,0 +1,28 @@ +unsignedTinyInteger('sort')->nullable()->after('egg_id'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('egg_variables', function (Blueprint $table) { + $table->dropColumn('sort'); + }); + } +};