Hi
I have source code of project with migrations. i want run this project on my pc. I want create new mysql DB and import dates from dump file.
I cant undestand very good how correct import dump sql file in mysql database?
First need i run migrations in project? And second import values from dump file? Please, help me. Thank you.
First run the migrations, so that Rails has the database in the situation that it thinks is right, then you can import the data (which I hope is in the same database format)
To import the data, you should be able to use something like
mysql -u username database < database_dump.sql
import command running i in mysql console or whe?
I just do it from the shell (command) prompt
thank you, Mike