98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
15 lines
332 B
Ruby
15 lines
332 B
Ruby
# rubocop:disable all
|
|
class CreateAppearancesCe < ActiveRecord::Migration
|
|
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
|