Skip to content

Commit 58fc96b

Browse files
author
Liran Cohen
committed
Add default_value field.
1 parent 625ee25 commit 58fc96b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

database/migrations/create_custom_fields_tables.php.stub

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ class CreateCustomFieldsTables extends Migration
1717
$table->json('answers')->nullable();
1818
$table->string('title');
1919
$table->string('description')->nullable();
20+
$table->string('default_value')->nullable();
2021
$table->string('order');
21-
$table->timestamp('deleted_at')->nullable();
2222
$table->timestamps();
23+
$table->timestamp('deleted_at')->nullable();
2324
});
2425

2526
Schema::create(config('custom-fields.tables.field_responses', 'custom_field_responses'), function (Blueprint $table) {

0 commit comments

Comments
 (0)