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:
authorNick Thomas <nick@gitlab.com>2019-07-01 14:23:25 +0300
committerNick Thomas <nick@gitlab.com>2019-07-02 11:35:03 +0300
commitcfe31f992a12c95570891b8cca8747589c6c6228 (patch)
treed89296a511b093b7216a4aca3a933234c9047865 /db/migrate/20150206222854_add_notification_email_to_user.rb
parent6d867cad918d80216908b68dba7e785997871ac7 (diff)
Squash old migrations
Use the `squasher` gem to squash migrations older than the start of 2018
Diffstat (limited to 'db/migrate/20150206222854_add_notification_email_to_user.rb')
-rw-r--r--db/migrate/20150206222854_add_notification_email_to_user.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/db/migrate/20150206222854_add_notification_email_to_user.rb b/db/migrate/20150206222854_add_notification_email_to_user.rb
deleted file mode 100644
index 7b0c251db4f..00000000000
--- a/db/migrate/20150206222854_add_notification_email_to_user.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-class AddNotificationEmailToUser < ActiveRecord::Migration[4.2]
- def up
- add_column :users, :notification_email, :string
-
- execute "UPDATE users SET notification_email = email"
- end
-
- def down
- remove_column :users, :notification_email
- end
-end