debian-mirror-gitlab/db/migrate/20160222153918_create_appearances_ce.rb
2019-02-15 15:39:39 +05:30

16 lines
337 B
Ruby

# rubocop:disable all
class CreateAppearancesCe < ActiveRecord::Migration[4.2]
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