mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 19:53:37 +08:00
18 lines
572 B
Ruby
18 lines
572 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateThemeSettingsMigrations < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
create_table :theme_settings_migrations do |t|
|
||
|
t.integer :theme_id, null: false
|
||
|
t.integer :theme_field_id, null: false
|
||
|
t.integer :version, null: false
|
||
|
t.string :name, null: false, limit: 150
|
||
|
t.json :diff, null: false
|
||
|
t.datetime :created_at, null: false
|
||
|
end
|
||
|
|
||
|
add_index :theme_settings_migrations, %i[theme_id version], unique: true
|
||
|
add_index :theme_settings_migrations, :theme_field_id, unique: true
|
||
|
end
|
||
|
end
|