summaryrefslogtreecommitdiff
path: root/db/migrate/20130711063759_create_project_group_links.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130711063759_create_project_group_links.rb')
-rw-r--r--db/migrate/20130711063759_create_project_group_links.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/migrate/20130711063759_create_project_group_links.rb b/db/migrate/20130711063759_create_project_group_links.rb
index bd9d40a50db..efccb2aa938 100644
--- a/db/migrate/20130711063759_create_project_group_links.rb
+++ b/db/migrate/20130711063759_create_project_group_links.rb
@@ -1,11 +1,13 @@
# rubocop:disable all
class CreateProjectGroupLinks < ActiveRecord::Migration
+ DOWNTIME = false
+
def change
create_table :project_group_links do |t|
t.integer :project_id, null: false
t.integer :group_id, null: false
- t.timestamps
+ t.timestamps null: true
end
end
end