sillyforum/db/seeds.rb

56 lines
1.2 KiB
Ruby
Raw Permalink Normal View History

2026-03-17 12:49:38 +00:00
user = User.create!(
email: "nahlisha@alexkurtzman.com",
password: "password",
password_confirmation: "password"
)
user2 = User.create!(
email: "toxicyuri@toxicyuri.com",
2026-03-17 12:49:38 +00:00
password: "password",
password_confirmation: "password"
)
2026-03-18 01:09:39 +00:00
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",
2026-03-18 01:09:39 +00:00
body: "lorem ipsum text",
forum_topic: topic1
)
thread2 = ForumThread.create!(
title: "samjett rights",
body: "can you be a sugar mommy in star trek",
2026-03-18 01:09:39 +00:00
forum_topic: topic2
)
reply1 = Reply.create!(
body: "aliens are hot",
2026-03-18 01:09:39 +00:00
thread_id: thread1.id,
user: user
2026-03-17 12:49:38 +00:00
)
reply2 = Reply.create!(
body: "i love women",
2026-03-18 01:09:39 +00:00
thread_id: thread2.id,
user: user2
2026-03-18 01:09:39 +00:00
)