I have a big project in laravel 4, and i need to make new database with lot of tables on the fly. I can make empty database on the fly, but how to fill it up with tables? I cant use migrations on the fly, because this application have lot of permissions, so user cant pass them.
First option is to clone empty database (empty from data but with tables). Second option is run sql dump file on the fly.
Can someone explain me how to do that?