Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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