Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlorente/laravel-data-migrations
An extension to allow you to separate data migrations from structure migrations
https://github.com/jlorente/laravel-data-migrations
data-migration laravel migrations
Last synced: 4 days ago
JSON representation
An extension to allow you to separate data migrations from structure migrations
- Host: GitHub
- URL: https://github.com/jlorente/laravel-data-migrations
- Owner: jlorente
- License: mit
- Created: 2018-02-13T20:16:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-19T10:03:31.000Z (3 months ago)
- Last Synced: 2024-12-22T18:08:33.159Z (11 days ago)
- Topics: data-migration, laravel, migrations
- Language: PHP
- Size: 22.5 KB
- Stars: 30
- Watchers: 2
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Data Migrations for Laravel
===========================
This extension allows you to separate data migrations from structure migrations.## Installation
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
With Composer installed, you can then install the extension using the following commands:
**NOTE:** Until laravel 7.x use version 1.x. From laravel 8.0 and later use 2.x
```bash
$ php composer.phar require jlorente/laravel-data-migrations
```or add
```json
...
"require": {
"jlorente/laravel-data-migrations": "*"
}
```to the ```require``` section of your `composer.json` file.
## Configuration
1. Register the ServiceProvider in your config/app.php service provider list. This step can be skipped in Laravel 5.5+
config/app.php
```php
return [
//other stuff
'providers' => [
//other stuff
\Jlorente\DataMigrations\DataMigrationsServiceProvider::class,
];
];
```2. Publish the new assets.
```shell
php artisan vendor:publish --tag=data-migrations
```
This will create the default migrations directory and the config/data-migrations.php file.## Usage
By default, the table used to store the data migrations is "migrations_data" table. You
can change the table on the config/data-migrations.php file.The data migrations will be stored in the migrations_data folder of the database path if no
path is specified in the command execution.The available commands of the package are:
*Create migration command*
```shell
php artisan make:data-migration [name] [--path=]
```
The firts time you use it the data migrations table will be created.*Run migration command*
```shell
php artisan migrate-data [--path=]
```*Rollback migration command*
```shell
php artisan migrate-data:rollback [--path=]
```The behavior of the migrations is the same as the regular migrations.
## License
Copyright © 2018 José Lorente Martín .Licensed under the MIT license. See LICENSE.txt for details.