Fix Migration

Fix rule migration reversal.
This commit is contained in:
notCharles 2024-09-06 15:50:42 -04:00
parent d7b5966e1b
commit 49e93c1379

View File

@ -26,7 +26,7 @@ return new class extends Migration
*/
public function down(): void
{
Schema::table('api_keys', function (Blueprint $table) {
Schema::table('egg_variables', function (Blueprint $table) {
$table->text('rules')->change();
});