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

20150920010715_add_consumed_timestep_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6975f5b9fec9a28a031da29a236d007ded2590c (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddConsumedTimestepToUsers < ActiveRecord::Migration
  def change
    add_column :users, :consumed_timestep, :integer
  end
end