2013-12-15 20:46:46 -05:00
|
|
|
User.reset_column_information
|
|
|
|
Topic.reset_column_information
|
|
|
|
Post.reset_column_information
|
|
|
|
|
2014-01-23 16:42:03 -05: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-03 21:21:43 -05:00
|
|
|
puts "Seeding welcome topics"
|
|
|
|
|
2013-12-15 20:46:46 -05: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-03 21:21:43 -05: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-15 20:46:46 -05:00
|
|
|
end
|