aboutsummaryrefslogtreecommitdiffhomepage
path: root/database/migrations/2014_10_12_000000_create_users_table.php
diff options
context:
space:
mode:
authorMarvin Borner2018-10-30 18:41:29 +0100
committerMarvin Borner2018-10-30 18:41:29 +0100
commit39aa8530424310663c888f9e02224158961532e3 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /database/migrations/2014_10_12_000000_create_users_table.php
parentbd568608bcda0729044e823aedfa799e10692e14 (diff)
PHP is crap
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.php34
1 files changed, 0 insertions, 34 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
deleted file mode 100644
index 59aa01a..0000000
--- a/database/migrations/2014_10_12_000000_create_users_table.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-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::drop('users');
- }
-}