Skip to content

Instantly share code, notes, and snippets.

@widiarifki
Created January 3, 2020 03:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save widiarifki/5150ceb80aa59ac9d22409e58e36a540 to your computer and use it in GitHub Desktop.
Save widiarifki/5150ceb80aa59ac9d22409e58e36a540 to your computer and use it in GitHub Desktop.
SuitCMS Migration - Add column email_verified_at.users
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class UpdateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->dateTime('email_verified_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('email_verified_at');
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment