Skip to content

Instantly share code, notes, and snippets.

@NtimYeboah
Created January 5, 2018 22:04
Show Gist options
  • Save NtimYeboah/03b7b127b3ae3cb5910c2b4ea63680bf to your computer and use it in GitHub Desktop.
Save NtimYeboah/03b7b127b3ae3cb5910c2b4ea63680bf to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->unsignedTinyInteger('is_super_admin')->default(0);
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment