mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-05 07:03:51 +08:00
6 lines
135 B
Ruby
6 lines
135 B
Ruby
|
class AddTimezoneToUser < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :users, :time_zone, :string, :default => "UTC"
|
||
|
end
|
||
|
end
|