Can I import a mysql dump to a laravel migration?

后端 未结 10 2043
离开以前
离开以前 2020-12-24 11:46

I have a complete database and need to create migration. I guess there must be a way to do it from a dump but not sure. Is there any way automatically or at least easier to

10条回答
  •  悲哀的现实
    2020-12-24 12:07

    another solution work for me in Laravel 5.2:

    DB::unprepared(File::get('full/path/to/dump.sql'));

提交回复
热议问题