2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2018-11-13 02:27:31 -05:00
|
|
|
class CreateAppearancesCe < ActiveRecord::Migration[4.2]
|
2016-02-22 14:49:16 -05:00
|
|
|
def change
|
|
|
|
unless table_exists?(:appearances)
|
|
|
|
create_table :appearances do |t|
|
|
|
|
t.string :title
|
|
|
|
t.text :description
|
|
|
|
t.string :header_logo
|
|
|
|
t.string :logo
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|