Make field nullable
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
08693f09b0
commit
88661a58a7
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ class AddShowInRequestableToCustomFields extends Migration
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('custom_fields', function (Blueprint $table) {
|
Schema::table('custom_fields', function (Blueprint $table) {
|
||||||
$table->boolean('show_in_requestable_list')->after('show_in_email')->default(0);
|
$table->boolean('show_in_requestable_list')->after('show_in_email')->nullable()->default(0);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue