diff --git a/database/migrations/2024_03_07_100000_create_form_submissions_table.php b/database/migrations/2024_03_07_100000_create_form_submissions_table.php index 9990150b..6ee9bfff 100644 --- a/database/migrations/2024_03_07_100000_create_form_submissions_table.php +++ b/database/migrations/2024_03_07_100000_create_form_submissions_table.php @@ -10,7 +10,7 @@ public function up() { Schema::create($this->prefix('form_submissions'), function (Blueprint $table) { $table->id(); - $table->string('form', 30)->nullable()->index(); + $table->string('form')->nullable()->index(); $table->jsonb('data')->nullable(); $table->timestamps(6);