2013-12-16 09:46:46 +08:00
|
|
|
User.reset_column_information
|
|
|
|
Topic.reset_column_information
|
|
|
|
Post.reset_column_information
|
|
|
|
|
2014-01-24 05:42:03 +08:00
|
|
|
if Topic.where('id NOT IN (SELECT topic_id from categories where topic_id is not null)').count == 0 && !Rails.env.test?
|
2014-02-04 10:21:43 +08:00
|
|
|
puts "Seeding welcome topics"
|
|
|
|
|
2013-12-16 09:46:46 +08:00
|
|
|
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)
|
2014-02-04 10:21:43 +08:00
|
|
|
|
|
|
|
welcome = File.read(Rails.root + 'docs/WELCOME-TO-DISCOURSE.md')
|
|
|
|
post = PostCreator.create(Discourse.system_user, category: 'Meta', raw: welcome, title: "Welcome to Discourse", skip_validations: true)
|
|
|
|
post.topic.update_pinned(true)
|
2013-12-16 09:46:46 +08:00
|
|
|
end
|