Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20161221152132_add_last_used_at_to_key.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb2b15817de096b926737c547f41d9d8c667e313 (plain)
1
2
3
4
5
6
7
8
9
class AddLastUsedAtToKey < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :keys, :last_used_at, :datetime
  end
end