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: c8438b3f6aabd9caa9a4921b303323552f64554b (plain)
1
2
3
4
5
class AddConsumedTimestepToUsers < ActiveRecord::Migration
  def change
    add_column :users, :consumed_timestep, :integer
  end
end