20150108073740_create_application_settings.rb 373 字节
Newer Older
S
Sean McGivern 已提交
1
# rubocop:disable all
2
class CreateApplicationSettings < ActiveRecord::Migration
3 4
  DOWNTIME = false

5 6 7 8 9 10 11 12
  def change
    create_table :application_settings do |t|
      t.integer :default_projects_limit
      t.boolean :signup_enabled
      t.boolean :signin_enabled
      t.boolean :gravatar_enabled
      t.text :sign_in_text

13
      t.timestamps null: true
14 15 16
    end
  end
end