mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:30:16 +08:00
9 lines
322 B
Ruby
9 lines
322 B
Ruby
|
class AddFieldsToRemoteThemes < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :remote_themes, :authors, :string
|
||
|
add_column :remote_themes, :theme_version, :string
|
||
|
add_column :remote_themes, :minimum_discourse_version, :string
|
||
|
add_column :remote_themes, :maximum_discourse_version, :string
|
||
|
end
|
||
|
end
|