mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
6f76a12e0a
* FEATURE: Let sites add a sitemap.xml file. This PR adds the same features discourse-sitemap provides to core. Sitemaps are only added to the robots.txt file if the `enable_sitemap` setting is enabled and `login_required` disabled. After merging discourse/discourse-sitemap#34, this change will take priority over the sitemap plugin because it will disable itself. We're also using the same sitemaps table, so our migration won't try to create it again using `if_not_exists: true`.
14 lines
374 B
Ruby
14 lines
374 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateSitemapsTable < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :sitemaps, if_not_exists: true do |t|
|
|
t.string :name, null: false
|
|
t.datetime :last_posted_at, null: false
|
|
t.boolean :enabled, null: false, default: true
|
|
end
|
|
|
|
add_index :sitemaps, :name, unique: true, if_not_exists: true
|
|
end
|
|
end
|