summaryrefslogtreecommitdiff
path: root/db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-05-03 22:36:02 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-05-04 15:36:04 -0300
commitcdcbe99aa749d4516f47ca9d2e7d510dc29d1c91 (patch)
tree48589a1a3cb76d9bd0732d446bea71f97fa91d8b /db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb
parent7a66cd688aea6bd7d1103d0024204a1470153975 (diff)
downloadgitlab-ce-cdcbe99aa749d4516f47ca9d2e7d510dc29d1c91.tar.gz
Add last_repository_updated_at to projects
Diffstat (limited to 'db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb')
-rw-r--r--db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb b/db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb
new file mode 100644
index 00000000000..00c685cf342
--- /dev/null
+++ b/db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb
@@ -0,0 +1,7 @@
+class AddLastRepositoryUpdatedAtToProjects < ActiveRecord::Migration
+ DOWNTIME = false
+
+ def change
+ add_column :projects, :last_repository_updated_at, :datetime
+ end
+end