discourse/db/migrate/20121211233131_create_site_customizations.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
472 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateSiteCustomizations < ActiveRecord::Migration[4.2]
2013-02-06 03:16:51 +08:00
def change
create_table :site_customizations do |t|
t.string :name, null: false
t.text :stylesheet
t.text :header
t.integer :position, null: false
t.integer :user_id, null: false
t.boolean :enabled, null: false
t.string :key, null: false
2017-08-07 23:48:36 +08:00
t.timestamps null: false
2013-02-06 03:16:51 +08:00
end
add_index :site_customizations, [:key]
end
end