<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
After that, you may import another jquery files (If you have).
mysql -u root -p app_development < path_to_.sql/filename.sqlIf SQL file is in another directory, for example, you can use ~/Desktop/filename.sqlA complete migration can be applied to the development database from the command line (inside your application's RAILS_ROOT directory): rake db:migrate
$ mysql -uroot -pmysql> use mysql;mysql> update user set password=PASSWORD("NEWPASSWORD") where User='USER';To reload privileges:mysql> flush privileges;mysql> quit