You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- desc "Initialize the data table structure"
-
- namespace :sync_table_structure do
- task import_csv: :environment do
- puts "init table structure......."
-
- system "mysql -uroot -p123456 -h127.0.0.1 forge_development < #{Rails.root}/db/structure.sql"
-
- puts "init success"
- end
- end
|