summaryrefslogtreecommitdiff
path: root/db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb
diff options
context:
space:
mode:
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