2017 © Pedro Peláez
 

library illuminate-data-migrations

Data Migrations for Laravel

image

lbadger/illuminate-data-migrations

Data Migrations for Laravel

  • Wednesday, March 21, 2018
  • by lbadger
  • Repository
  • 1 Watchers
  • 0 Stars
  • 626 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 7 Versions
  • 16 % Grown

The README.md

illuminate-data-migrations

Creating data migrations for Laravel. This keeps data out of migrations and leaves it for schema changes only., (*1)

Install

composer require lbadger/illuminate-data-migrations, (*2)

Data Migration Folder

Create a folder called "data_migrations" in the /database folder, (*3)

Laravel

config/database.php

'data-migrations' => 'data_migrations',

config/app.php

Add these to the 'providers' array, (*4)

\Lbadger\Database\Providers\ArtisanServiceProvider::class,
\Lbadger\Database\Providers\DataMigrationServiceProvider::class,

Lumen

bootstrap/app.php

$app['config']['database.data-migrations'] = 'data_migrations';
$app->register(\Lbadger\Database\Providers\ArtisanServiceProvider::class);
$app->register(\Lbadger\Database\Providers\DataMigrationServiceProvider::class);

Custom Stub

If you would like to use custom stubs, you need to put your stub in the database/stubs directory with the suffix of .stub
  • Note: You cannot have the same data migration class name as a normal migration

The Versions

21/03 2018

dev-master

9999999-dev

Data Migrations for Laravel

  Sources   Download

The Requires

 

14/01 2018

dev-release/v2.0.0

dev-release/v2.0.0

Data Migrations for Laravel

  Sources   Download

The Requires

 

14/01 2018

v2.0.0

2.0.0.0

Data Migrations for Laravel

  Sources   Download

The Requires

 

12/09 2017

dev-release/v1.0.1

dev-release/v1.0.1

Data Migrations for Laravel

  Sources   Download

The Requires

 

12/09 2017

v1.0.1

1.0.1.0

Data Migrations for Laravel

  Sources   Download

The Requires

 

12/09 2017

dev-release/v1.0.0

dev-release/v1.0.0

Data Migrations for Laravel

  Sources   Download

The Requires

 

12/09 2017

v1.0.0

1.0.0.0

Data Migrations for Laravel

  Sources   Download

The Requires