diff options
Diffstat (limited to 'database')
-rw-r--r-- | database/migrations/2020_10_19_210000_create_reservations_table.php (renamed from database/migrations/2020_10_18_142649_create_reservations_table.php) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database/migrations/2020_10_18_142649_create_reservations_table.php b/database/migrations/2020_10_19_210000_create_reservations_table.php index 812d544..ad24f3d 100644 --- a/database/migrations/2020_10_18_142649_create_reservations_table.php +++ b/database/migrations/2020_10_19_210000_create_reservations_table.php @@ -16,7 +16,7 @@ class CreateReservationsTable extends Migration Schema::create('reservations', function (Blueprint $table) { $table->id(); $table->boolean('approved')->default(false); - $table->unsignedBigInteger('specialCall') + $table->unsignedBigInteger('specialCall'); $table->dateTime('fromTime'); $table->dateTime('toTime'); $table->string('frequencies', 255); |