Add new migration

This commit is contained in:
Daniel Supernault 2018-12-23 22:02:11 -07:00
parent 9608307243
commit a65f2e713c
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 40 additions and 0 deletions

View File

@ -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');
});
}
}