Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. Site.create(name: 'Irland',
  2. locales: ['en-GB'],
  3. domains: ['ie.funzing.dev'],
  4. currency_code: 'GBP',
  5. currency: '£',
  6. direction: 'ltr',
  7. referal_credits_amount: 5,
  8. timezones: ['Dublin'],
  9. support_phone: '020 3637 3306',
  10. country_code: 'IE',
  11. css: true,
  12. mc_list_id: '3518c539c1',
  13. support_email: 'team@funzing.com',
  14. week_start_day: 'monday',
  15. commission: 15,
  16. vat: 0
  17. )
  18.  
  19. uk = Site.find_by_name('United Kingdom')
  20. ie = Site.find_by_name('Irland')
  21.  
  22. uk.categories.each do |categories|
  23. ie.categories.create(category: category)
  24. end
  25.  
  26. Category.all.each do |category|
  27. if category.sites_ids.include?(uk.id)
  28. category.sites_ids << ie.id
  29. end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement