aboutsummaryrefslogtreecommitdiff
path: root/database/migrations/2020_10_18_142649_create_reservations_table.php
diff options
context:
space:
mode:
Diffstat (limited to 'database/migrations/2020_10_18_142649_create_reservations_table.php')
-rw-r--r--database/migrations/2020_10_18_142649_create_reservations_table.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/database/migrations/2020_10_18_142649_create_reservations_table.php b/database/migrations/2020_10_18_142649_create_reservations_table.php
new file mode 100644
index 0000000..fc8e39a
--- /dev/null
+++ b/database/migrations/2020_10_18_142649_create_reservations_table.php
@@ -0,0 +1,32 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class CreateReservationsTable extends Migration
+{
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::create('reservations', function (Blueprint $table) {
+ $table->id();
+ $table->boolean('approved')->default(false);
+ $table->timestamps();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists('reservations');
+ }
+}