summaryrefslogtreecommitdiff
path: root/db/migrations/2018_10_01_000000_create_users_tables.php
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrations/2018_10_01_000000_create_users_tables.php')
-rw-r--r--db/migrations/2018_10_01_000000_create_users_tables.php14
1 files changed, 1 insertions, 13 deletions
diff --git a/db/migrations/2018_10_01_000000_create_users_tables.php b/db/migrations/2018_10_01_000000_create_users_tables.php
index 55ee382e..d6778c52 100644
--- a/db/migrations/2018_10_01_000000_create_users_tables.php
+++ b/db/migrations/2018_10_01_000000_create_users_tables.php
@@ -16,6 +16,7 @@ use stdClass;
class CreateUsersTables extends Migration
{
use ChangesReferences;
+ use Reference;
/**
* Run the migration
@@ -273,17 +274,4 @@ class CreateUsersTables extends Migration
$this->schema->drop('users');
}
-
- /**
- * @param Blueprint $table
- */
- protected function referencesUser(Blueprint $table)
- {
- $table->unsignedInteger('user_id');
-
- $table->primary('user_id');
- $table->foreign('user_id')
- ->references('id')->on('users')
- ->onDelete('cascade');
- }
}