2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-02-06 20:56:24 +11:00
|
|
|
class RailsSettingsMigration < ActiveRecord::Migration[5.0]
|
2024-06-22 00:43:12 +10:00
|
|
|
def up
|
2016-10-07 22:17:56 +11:00
|
|
|
create_table :settings do |t|
|
2021-03-19 12:45:34 +11:00
|
|
|
t.string :var, null: false
|
2016-10-07 22:17:56 +11:00
|
|
|
t.text :value
|
2021-03-19 12:45:34 +11: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 22:17:56 +11:00
|
|
|
end
|
2023-02-18 08:56:20 +11:00
|
|
|
add_index :settings, [:target_type, :target_id, :var], unique: true
|
2016-10-07 22:17:56 +11:00
|
|
|
end
|
|
|
|
|
2024-06-22 00:43:12 +10:00
|
|
|
def down
|
2016-10-07 22:17:56 +11:00
|
|
|
drop_table :settings
|
|
|
|
end
|
|
|
|
end
|