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

20150205211843_add_timestamps_to_identities.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c535a7ec78136933589e215f290511f49d6b0865 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTimestampsToIdentities < ActiveRecord::Migration[4.2]
  def change
    add_timestamps(:identities)
  end
end