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/20160328112808_create_notification_settings.rb')
-rw-r--r--db/migrate/20160328112808_create_notification_settings.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/db/migrate/20160328112808_create_notification_settings.rb b/db/migrate/20160328112808_create_notification_settings.rb
deleted file mode 100644
index db19d2e370c..00000000000
--- a/db/migrate/20160328112808_create_notification_settings.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-# rubocop:disable all
-class CreateNotificationSettings < ActiveRecord::Migration[4.2]
- def change
- create_table :notification_settings do |t|
- t.references :user, null: false
- t.references :source, polymorphic: true, null: false
- t.integer :level, default: 0, null: false
-
- t.timestamps null: false
- end
- end
-end