Remove Unsuported JSON field

This commit is contained in:
2022-07-25 12:27:37 +07:00
parent 2493e7fd2a
commit a59c326926

View File

@@ -20,7 +20,7 @@ return new class extends Migration
$table->text('welcome_message')->nullable();
$table->text('help_text')->nullable();
$table->boolean('active')->default(true);
$table->json('linking_rules')->nullable();
$table->text('linking_rules')->nullable();
$table->timestamps();
$table->softDeletes();