schema-builder
schema-builder copied to clipboard
Suggestions
Hi this is not really an issue post, but I didnt find any contact information. I was wondering what you think about the suggestions below. If you like any of them I might send you a pull request. Brilliant repo, thanks.
- Add auth tables by default (create_users_table/create_password_resets_table). Now they have to be recreated in order to relate tables to a user?
- Instead of downloading a zip, it would be cool if the export button actually put the migrations directly in database folder.
- Option to migrate directly from GUI
- What about the rest of the design process? It would be awesome if it could also spit out Models with corresponding hasMany() etc...
Hello, thanks for the feedback & suggestions, really appreciate it. Any pull request is welcome.
About no. 2, I actually tried this. But there was a file permission issue when migrations were created, that's why I decided to make a zip.
I'll try out others as soon as possible, but currently not working on any laravel related projects.
Cool, I will soon have some time to test some of the ideas out to. But what was the file permission issue?
Migration files were created as a root user with a 444 permission, soI had to use sudo
to update or remove those files.