1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00

Load bike brands and models into sqlite3, This will work for now

This commit is contained in:
Jason Denney 2012-12-08 15:00:24 -05:00
parent 7bf4c4d601
commit a307d5f6d5

View File

@ -12,6 +12,12 @@ Dir.glob(File.join(Rails.root, 'db', 'seed', 'fixtures', '**', '*.{yml,csv}')).e
ActiveRecord::Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
end
#Load bike brands and models from sql
if
sql_path = File.join(Rails.root, 'db', 'seed', 'sql', 'bike_brands_and_models.sql')
system "sqlite3 db/development.sqlite3 < #{sql_path}" if Rails.env.development?
end
if Rails.env.development?
user = FactoryGirl.build(:user)
FactoryGirl.create(:user) if not User.find_by_email(user.email)