mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +08:00
11 lines
386 B
Ruby
11 lines
386 B
Ruby
User.reset_column_information
|
|
Topic.reset_column_information
|
|
Post.reset_column_information
|
|
|
|
if Topic.count == 0 && !Rails.env.test?
|
|
# 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
|