Download the PHP package webikevn/migration-generate without Composer

On this page you can find all versions of the php package webikevn/migration-generate. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package migration-generate

Laravel Migrations Generator

Generate Laravel Migrations from an existing database, including indexes and foreign keys!

News

  1. Major rewrite on FieldGenerator and IndexGenerator.
  2. Fixed miscellaneous bugs.
  3. Added spatial data type support such as geometry, point, etc.
  4. Support more Laravel migration types such as json, uuid, longText, year, etc
  5. Added spatialIndex support.
  6. timestamp and datetime support precision.
  7. Fixed MySQL tinyInteger and boolean issue.
  8. Able generate softDeletes, rememberToken, timestamps types.
  9. Support set for MySQL.
  10. It is now possible to generate nullable timestamp
  11. Removed unused classes.
  12. Added UT!
  13. More UT will be added to increase coverage.

This package is cloned from https://github.com/Xethron/migrations-generator and updated to support Laravel 6 and above.

Version Compatibility

Laravel Version
7.x 4.x
6.x 4.x
5.8.x 4.x
5.7.x 4.x
5.6.x 4.x
5.5 and below https://github.com/Xethron/migrations-generator

Install

The recommended way to install this is through composer:

Laravel Setup

Laravel will automatically register service provider for you.

Lumen Setup

Auto discovery is not available in Lumen, you need some modification on bootstrap/app.php

Register provider

Add following line

Usage

To generate migrations from a database, you need to have your database setup in Laravel's Config.

Run php artisan migrate:generate to create migrations for all the tables, or you can specify the tables you wish to generate using php artisan migrate:generate table1,table2,table3,table4,table5. You can also ignore tables with --ignore="table3,table4,table5"

Laravel Migrations Generator will first generate all the tables, columns and indexes, and afterwards setup all the foreign key constraints. So make sure you include all the tables listed in the foreign keys so that they are present when the foreign keys are created.

You can also specify the connection name if you are not using your default connection with --connection="connection_name"

Run php artisan help migrate:generate for a list of options.

Options Description
-c, --connection[=CONNECTION] The database connection to use
-t, --tables[=TABLES] A list of Tables you wish to Generate Migrations for separated by a comma: users,posts,comments
-i, --ignore[=IGNORE] A list of Tables you wish to ignore, separated by a comma: users,posts,comments
-p, --path[=PATH] Where should the file be created?
--defaultIndexNames Don't use db index names for migrations
--defaultFKNames Don't use db foreign key names for migrations
-tp, --templatePath[=TEMPLATEPATH] The location of the template for this generator

Thank You

This package is cloned from https://github.com/Xethron/migrations-generator

Thanks to Jeffrey Way for his amazing Laravel-4-Generators package. This package depends greatly on his work.

Contributors

Nguyen Giang (https://www.facebook.com/truonggiang.gk)

License

The Laravel Migrations Generator is open-sourced software licensed under the MIT license


All versions of migration-generate with dependencies

PHP Build Version
Package Version
Requires php Version 7.3.*
illuminate/support Version ^5.6|^6.0|^7.0
doctrine/dbal Version ~2.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package webikevn/migration-generate contains the following files

Loading the files please wait ....