Skip to content

Commit b1c253b

Browse files
Change settings table value data type from text to json
1 parent 109034b commit b1c253b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/migrations/2014_10_00_000000_create_settings_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function up(): void
1414
Schema::create('settings', function (Blueprint $table) {
1515
$table->id();
1616
$table->string('name');
17-
$table->text('value')->nullable();
17+
$table->json('value');
1818
$table->string('group')->default('default');
1919
$table->nullableUuidMorphs('settable');
2020
$table->timestamps();

0 commit comments

Comments
 (0)