Skip to content

Instantly share code, notes, and snippets.

@brunomichetti
Created August 27, 2019 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunomichetti/2f12f602b23ed84a9fd9f785384a14ba to your computer and use it in GitHub Desktop.
Save brunomichetti/2f12f602b23ed84a9fd9f785384a14ba to your computer and use it in GitHub Desktop.
influencer = Influencer.create!(name: 'taylorSwift')
100.times do |i|
fan = Fan.create!(name: i.to_s)
FanInfluencer.create!(fan_id: fan.id, influencer_id: influencer.id)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment