mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
e1f8014acd
If the feature is enabled, staff members can construct a URL and publish a topic for others to browse without the regular Discourse chrome. This is useful if you want to use Discourse like a CMS and publish topics as articles, which can then be embedded into other systems.
14 lines
331 B
Ruby
14 lines
331 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreatePublishedPages < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :published_pages do |t|
|
|
t.references :topic, null: false, index: { unique: true }
|
|
t.string :slug, null: false
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :published_pages, :slug, unique: true
|
|
end
|
|
end
|