Change onboarding type to mediumText

This commit is contained in:
Benjamin Beganović 2021-11-04 09:36:18 +01:00
parent dff50a7886
commit ab7c2253a4

View File

@ -15,7 +15,7 @@ class Onboarding extends Migration
{ {
Schema::table('accounts', function (Blueprint $table) { Schema::table('accounts', function (Blueprint $table) {
$table->boolean('is_onboarding')->default(false); $table->boolean('is_onboarding')->default(false);
$table->json('onboarding')->nullable(); $table->mediumText('onboarding')->nullable();
}); });
} }
} }