discourse/db/migrate/20200401172023_create_publi...

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