This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-12 00:47:08 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-07 04:17:56 -07:00
|
|
|
MIGRATION_BASE_CLASS = if ActiveRecord::VERSION::MAJOR >= 5
|
2023-02-17 13:56:20 -08:00
|
|
|
ActiveRecord::Migration[5.0]
|
|
|
|
else
|
|
|
|
ActiveRecord::Migration[4.2]
|
|
|
|
end
|
2016-10-07 04:17:56 -07:00
|
|
|
|
|
|
|
class RailsSettingsMigration < MIGRATION_BASE_CLASS
|
|
|
|
def self.up
|
|
|
|
create_table :settings do |t|
|
2021-03-18 18:45:34 -07:00
|
|
|
t.string :var, null: false
|
2016-10-07 04:17:56 -07:00
|
|
|
t.text :value
|
2021-03-18 18:45:34 -07:00
|
|
|
t.references :target, null: false, polymorphic: true, index: { name: 'index_settings_on_target_type_and_target_id' }
|
|
|
|
t.timestamps null: true
|
2016-10-07 04:17:56 -07:00
|
|
|
end
|
2023-02-17 13:56:20 -08:00
|
|
|
add_index :settings, [:target_type, :target_id, :var], unique: true
|
2016-10-07 04:17:56 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :settings
|
|
|
|
end
|
|
|
|
end
|