discourse/db/fixtures/999_topics.rb
2013-12-16 12:46:46 +11:00

11 lines
366 B
Ruby

User.reset_column_information
Topic.reset_column_information
Post.reset_column_information
if Topic.count == 0
# 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