diff options
author | Mateja <mail@matejamaric.com> | 2020-11-01 17:03:12 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-11-01 17:03:12 +0100 |
commit | 0ce5bbcc443b9da12e5233a481f2ef15017ee891 (patch) | |
tree | aebdd93295c71ba576585940a42b8fb930328fd8 /database/migrations | |
parent | 3e5dc09d0010078568f8590daef1f95722a4dd05 (diff) | |
download | yota-laravel-0ce5bbcc443b9da12e5233a481f2ef15017ee891.tar.gz yota-laravel-0ce5bbcc443b9da12e5233a481f2ef15017ee891.zip |
Callsign adding finished.
Diffstat (limited to 'database/migrations')
-rw-r--r-- | database/migrations/2020_10_18_183257_create_special_calls_table.php | 2 |
1 files changed, 1 insertions, 1 deletions
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(); }); } |