HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Database Schema Migrations
Shadowdare
MVP
Has anyone ever seen similar functionality to Vanilla's database structuring in any other PHP frameworks? I like how you can define the schema for tables within an application and how it generates migrations that can be run from the dashboard. Looking for examples of how something like this is implemented in other frameworks.
Add Pages to Vanilla with the Basic Pages app
0
Comments
Laravel uses migrations: https://laravel.com/docs/5.1/migrations
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
Symfony migrations
http://symfony.com/legacy/doc/doctrine/1_2/en/07-Migrations
grep is your friend.
@hgtonight, is it easy to deploy Laravel migrations to a production website? Does Laravel encourage a database first design model, as opposed to a code first design, to go alongside the migrations?
Add Pages to Vanilla with the Basic Pages app