summaryrefslogtreecommitdiff
path: root/db/migrate/20150920010715_add_consumed_timestep_to_users.rb
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