stidges / laravel-fk-migration
Helpful base migration for creating all your foreign key without worrying about the order of your migrations.
Installs: 4 229
Dependents: 0
Suggesters: 0
Security: 0
Stars: 37
Watchers: 4
Forks: 1
Open Issues: 0
Requires
- php: >=5.4.0
- illuminate/database: ~4.0
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2024-10-29 04:47:20 UTC
README
This Laravel package provides a base migration for you to extend to easily create all your foreign keys. If you ever ran into the problem where you had to reorganize all your migrations due to failing foreign key constraints, this is the package for you!
Getting Started
This package can be installed through Composer, just add it to your composer.json file:
{ "require": { "stidges/laravel-fk-migration": "1.*" } }
After you have added it to your composer.json file, make sure you update your dependencies:
composer update
Basic Usage
To get started, create a new class in your app/database/migrations/
directory.
If you want to make sure this migration gets executed last, you can name it something like 9999_99_99_999999_create_foreign_keys.php
(this might be slightly overdone, but you get the idea).
Next, add the following content to the empty class you just created:
<?php use Stidges\LaravelFkMigration\Migration; class CreateForeignKeys extends Migration { /** * The foreign keys to create or drop. * * @var array */ protected $keys = []; }
The $keys
array is where you can define your foreign keys. It should be an associative array, where the key is the table name, and the value is a (list of) foreign key(s). Below you can find a list of options that can be specified for the foreign keys.
Note: As a minimum you should specify the column
property for each foreign key. If you forget to specify this, an exception will be thrown.
Basic Example
Below you can find a basic example for reference.
<?php use Stidges\LaravelFkMigration\Migration; class CreateForeignKeys extends Migration { protected $keys = [ 'posts' => [ 'column' => 'category_id' ], 'post_tag' => [ [ 'column' => 'post_id', 'onDelete' => 'cascade' ], [ 'column' => 'tag_id' ], ], ]; }
Extended Example
Internally, the migration will call a getKeys()
method, which by default returns the specified $keys
array. You are free to override this method if you wish to have more flexibility when defining keys. For example, if you have a lot of tables referencing the users
table, you can do the following:
<?php use Stidges\LaravelFkMigration\Migration; class CreateForeignKeys extends Migration { protected $keys = []; protected $presets = [ 'user' => [ 'column' => 'user_id' ], ]; public function getKeys() { $keys = [ 'posts' => [ $this->presets['user'] ], 'tags' => [ $this->presets['user'] ], 'categories' => [ $this->presets['user'] ], ]; return $keys; } }
This way you don't have to copy the same foreign key reference over and over!
Contributing
All suggestions and pull requests are welcome! If you make any substantial changes, please provide tests along with your pull requests!
License
Copyright (c) 2014 Stidges - Released under the MIT license.