Skip to content

Instantly share code, notes, and snippets.

@jpalala
Created April 26, 2017 10:17
Show Gist options
  • Select an option

  • Save jpalala/b76c5420dee7bda697f359766f65afc6 to your computer and use it in GitHub Desktop.

Select an option

Save jpalala/b76c5420dee7bda697f359766f65afc6 to your computer and use it in GitHub Desktop.
Laravel migration create_users_table
<?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('username');
$table->string('email');
$table->string('password');
$table->string('remember_token')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment