afsardo / laravel-schema
Laravel Schema new migrations.
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.6.4
- laravel/framework: 5.4.*
Requires (Dev)
- mockery/mockery: 0.9.*
- orchestra/testbench: ~3.0
- phpunit/phpunit: ~5.7
This package is not auto-updated.
Last update: 2020-09-19 06:39:19 UTC
README
A new seamless way to use your migrations, in a single file style, represent exacly your schema.
Example:
FROM
- 2014_10_12_000000_create_users_table.php
- 2014_10_12_100000_create_password_resets_table.php
TO
- 0000_users.schema.php
- 0001_password_resets.schema.php
TODO:
There is alot to do for this package to be officially launched.
- Support indexes
- Editing columns
- Make migration command overwrite
- Database cleanup command (NEW COMMAND)
- Needs to support PostgreSQL
- Needs to support SQLserver
- Add tests