2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2015-01-08 03:22:50 -05:00
|
|
|
class CreateApplicationSettings < ActiveRecord::Migration
|
2016-11-30 10:15:02 -05:00
|
|
|
DOWNTIME = false
|
|
|
|
|
2015-01-08 03:22:50 -05:00
|
|
|
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
|
|
|
|
|
2016-11-28 10:45:08 -05:00
|
|
|
t.timestamps null: true
|
2015-01-08 03:22:50 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|