55 lines
1.2 KiB
Ruby
55 lines
1.2 KiB
Ruby
user = User.create!(
|
|
email: "nahlisha@alexkurtzman.com",
|
|
password: "password",
|
|
password_confirmation: "password"
|
|
)
|
|
|
|
user2 = User.create!(
|
|
email: "toxicyuri@toxicyuri.com",
|
|
password: "password",
|
|
password_confirmation: "password"
|
|
)
|
|
|
|
cat1 = Category.create!(title: "Femslash Creations", description: "This is a description")
|
|
cat2 = Category.create!(title: "Toxic Yuri Creations", description: "This is a description")
|
|
cat3 = Category.create!(title: "Yuricest Creations", description: "This is a description")
|
|
|
|
|
|
topic1 = ForumTopic.create!(
|
|
title: "Writing - WIP",
|
|
description: "For sharing writing works in progress and such.",
|
|
category: cat1
|
|
)
|
|
|
|
topic2 = ForumTopic.create!(
|
|
title: "Art - WIP",
|
|
description: "For sharing visual art works in progress.",
|
|
category: cat1
|
|
)
|
|
|
|
|
|
thread1 = ForumThread.create!(
|
|
title: "WOMENRGAY666",
|
|
body: "lorem ipsum text",
|
|
forum_topic: topic1
|
|
)
|
|
|
|
thread2 = ForumThread.create!(
|
|
title: "samjett rights",
|
|
body: "can you be a sugar mommy in star trek",
|
|
forum_topic: topic2
|
|
)
|
|
|
|
|
|
reply1 = Reply.create!(
|
|
body: "aliens are hot",
|
|
thread_id: thread1.id,
|
|
user: user
|
|
)
|
|
|
|
reply2 = Reply.create!(
|
|
body: "i love women",
|
|
thread_id: thread2.id,
|
|
user: user2
|
|
)
|
|
|