Download the PHP package letuananh1873/db-exporter without Composer
On this page you can find all versions of the php package letuananh1873/db-exporter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download letuananh1873/db-exporter
More information about letuananh1873/db-exporter
Files in letuananh1873/db-exporter
Package db-exporter
Short Description Export your database quickly and easily as a Laravel Migration and all the data as a Seeder class.
License MIT
Informations about the package db-exporter
Database Exporter
Export your database quickly and easily as a Laravel Migration and all the data as a Seeder class. This can be done via artisan commands or a controller action.
Please note that I've only tested this package on a MySQL database. It has been confirmed it does not work with Postgres
Installation
Add "elimuswift/db-exporter"
* as a requirement to composer.json
:
Update composer:
For laravel <=5.4
, Add the service provider to config/app.php
:
(Optional) Publish the configuration file.
After publishing the config file make sure you change storage location for migrations and seeds.
Use dev-master
as version requirement to be on the cutting edge
Documentation
From the commandline
Export database to migration
Basic usage
Specify a database
Ignoring tables
You can ignore multiple tables by seperating them with a comma.
Export database table data to seed class
This command will export all your database table data into a seed class.
Important: This requires your database config file to be updated in config/database.php
**
Uploading migrations/seeds to Storage Disk
Important: The package backup destinations paths should match your desired disk location
You can backup migrations and / or seeds to a storage disk that you application supports.
Or upload the seeds to the production server:
Or even combine the two:
This feature uses Laravel's filesystem.
You must configure your storage and then specify the disk name in the config file. The default disk is local
Export current database
This class will export the database name from your config/database.php
file, based on your 'default' option.
Export a custom database
Database to seed
This will write a seeder class with all the data of the current database.
Seed a custom database
Just pass the nameof the database to be seeded.
Next all you have to do is add the call method on the base seed class:
Now you can run from the commmand line:
php artisan db:seed
, or, without having to add the call method: php artisan db:seed --class=nameOfYourSeedClass
Chaining
You can also combine the generation of the migrations & the seed:
Or with:
Ignoring tables
By default the migrations table is ignored. You can add tabled to ignore with the following syntax:
You can also pass an array of tables to ignore.
From the configuration file
Ignore tables for seeder
If you want to always ignore certain tables you can do it on the config file
With this configuration every time when the command php artisan db-exporter:seeds
is executed will ignore the tables on the array
Just use selected tables for seeder
In the other hand, If you want to use always certain tables you can do it on the config file
With this configuration every time when the command php artisan db-exporter:seeds
is executed will only be executed to the tables on the array
Credits
Credits to @nWidart the original creator of the package DbExporter. I couldn't get it working as-is, so I decided to rewrite the package to fit the latest versions of laravel, and added a couple a features of my own.
All versions of db-exporter with dependencies
illuminate/support Version ^5.2
illuminate/database Version ^5.2
illuminate/filesystem Version ^5.2