debian-mirror-gitlab/db/migrate/20170503004125_add_last_repository_updated_at_to_projects.rb
2017-08-17 22:00:37 +05:30

8 lines
177 B
Ruby

class AddLastRepositoryUpdatedAtToProjects < ActiveRecord::Migration
DOWNTIME = false
def change
add_column :projects, :last_repository_updated_at, :datetime
end
end