mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
10 lines
335 B
Ruby
10 lines
335 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddLogoToConferencesTable < ActiveRecord::Migration
|
|
def change
|
|
add_column :conferences, :logo_file_name, :string
|
|
add_column :conferences, :logo_content_type, :string
|
|
add_column :conferences, :logo_file_size, :integer
|
|
add_column :conferences, :logo_updated_at, :datetime
|
|
end
|
|
end
|