We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1592ce0 commit 78770d3Copy full SHA for 78770d3
database/migrations/create_custom_fields_table.php
@@ -108,8 +108,7 @@ public function up(): void
108
109
$table->foreignIdFor(CustomFields::customFieldModel())
110
->constrained()
111
- ->cascadeOnDelete()
112
- ;
+ ->cascadeOnDelete();
113
114
$table->string('name')->nullable();
115
$table->unsignedBigInteger('sort_order')->nullable();
@@ -136,8 +135,7 @@ public function up(): void
136
135
$table->morphs('entity');
137
$table->foreignIdFor(CustomField::class)
138
139
140
141
142
$table->text('string_value')->nullable();
143
$table->longText('text_value')->nullable();
0 commit comments