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: a78e28eb4ebcec5a6396b01676f1d10318560f5d (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTimestampsToIdentities < ActiveRecord::Migration
  def change
    add_timestamps(:identities)
  end
end