From 0ce5bbcc443b9da12e5233a481f2ef15017ee891 Mon Sep 17 00:00:00 2001 From: Mateja Date: Sun, 1 Nov 2020 17:03:12 +0100 Subject: Callsign adding finished. --- database/migrations/2020_10_18_183257_create_special_calls_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'database') diff --git a/database/migrations/2020_10_18_183257_create_special_calls_table.php b/database/migrations/2020_10_18_183257_create_special_calls_table.php index 07e92be..2789eb8 100644 --- a/database/migrations/2020_10_18_183257_create_special_calls_table.php +++ b/database/migrations/2020_10_18_183257_create_special_calls_table.php @@ -16,7 +16,7 @@ class CreateSpecialCallsTable extends Migration Schema::create('special_calls', function (Blueprint $table) { $table->id(); $table->string('sign')->unique(); - $table->text('description'); + $table->text('description')->nullable(); $table->timestamps(); }); } -- cgit v1.2.3