diff options
author | Marvin Borner | 2018-06-30 14:37:53 +0200 |
---|---|---|
committer | Marvin Borner | 2018-06-30 14:37:53 +0200 |
commit | dfcb5b1c4e8cb1f749dc47e7d310b1d0891c8eeb (patch) | |
tree | 15a8ca76bb09b019f3a0a9981de4fef8ee2d5f26 /database/migrations/2014_10_12_000000_create_users_table.php | |
parent | fb063381707ccd624b1e31734ab0898d23ecd7bd (diff) |
Began Laravel environment
Diffstat (limited to 'database/migrations/2014_10_12_000000_create_users_table.php')
-rw-r--r-- | database/migrations/2014_10_12_000000_create_users_table.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..689cbee --- /dev/null +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,35 @@ +<?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->rememberToken(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('users'); + } +} |