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:
authorRémy Coutable <remy@rymai.me>2016-11-30 18:15:02 +0300
committerRémy Coutable <remy@rymai.me>2016-11-30 18:15:02 +0300
commita59e75a17f52d2c71501b0f61686b3a546501d60 (patch)
treead6889d72645b7ac4daa0317f02dc40dc40070a1 /db/migrate/20140209025651_create_emails.rb
parent2c0d9890e675c8799e76a69f7e432463fa06f996 (diff)
Make the downtime_check task happy
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'db/migrate/20140209025651_create_emails.rb')
-rw-r--r--db/migrate/20140209025651_create_emails.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/migrate/20140209025651_create_emails.rb b/db/migrate/20140209025651_create_emails.rb
index 48d14682628..51886f8fc89 100644
--- a/db/migrate/20140209025651_create_emails.rb
+++ b/db/migrate/20140209025651_create_emails.rb
@@ -1,10 +1,12 @@
# rubocop:disable all
class CreateEmails < ActiveRecord::Migration
+ DOWNTIME = false
+
def change
create_table :emails do |t|
t.integer :user_id, null: false
t.string :email, null: false
-
+
t.timestamps null: true
end