discourse/db/fixtures/999_topics.rb

11 lines
439 B
Ruby
Raw Normal View History

2013-12-16 09:46:46 +08:00
User.reset_column_information
Topic.reset_column_information
Post.reset_column_information
2014-01-23 19:59:53 +08:00
if Topic.where('id NOT IN (SELECT topic_id from categories)').count == 0 && !Rails.env.test?
2013-12-16 09:46:46 +08:00
# seed welcome topic
puts "Seeding welcome topic"
welcome = File.read(Rails.root + 'docs/ADMIN-QUICK-START-GUIDE.md')
PostCreator.create(Discourse.system_user, raw: welcome, title: "Discourse Admin Quick Start Guide" ,skip_validations: true)
end