Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VirajMadhu/f159f5fbe5e2f198144099618207c5fa to your computer and use it in GitHub Desktop.
Save VirajMadhu/f159f5fbe5e2f198144099618207c5fa to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUserTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('user', function (Blueprint $table) {
$table->id();
$table->string('username');
$table->string('email');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('user');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment