scinote-web/db/migrate/20151207151820_add_timezone_to_user.rb
2016-02-12 16:52:43 +01:00

6 lines
135 B
Ruby

class AddTimezoneToUser < ActiveRecord::Migration
def change
add_column :users, :time_zone, :string, :default => "UTC"
end
end