Browse Source

Add new migration

Daniel Supernault 6 years ago
parent
commit
a65f2e713c

+ 40 - 0
database/migrations/2018_12_24_032921_add_delete_after_to_user_table.php

@@ -0,0 +1,40 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class AddDeleteAfterToUserTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('profiles', function (Blueprint $table) {
+            $table->timestamp('delete_after')->nullable();
+        });
+
+        Schema::table('users', function (Blueprint $table) {
+            $table->timestamp('delete_after')->nullable();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('profiles', function (Blueprint $table) {
+            $table->dropColumn('delete_after');
+        });
+
+        Schema::table('users', function (Blueprint $table) {
+            $table->dropColumn('delete_after');
+        });
+    }
+}