summaryrefslogtreecommitdiff
path: root/db/migrate/20160222153918_create_appearances_ce.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160222153918_create_appearances_ce.rb')
-rw-r--r--db/migrate/20160222153918_create_appearances_ce.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20160222153918_create_appearances_ce.rb b/db/migrate/20160222153918_create_appearances_ce.rb
deleted file mode 100644
index 37bbe62ad3d..00000000000
--- a/db/migrate/20160222153918_create_appearances_ce.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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