Add timestamptz Columns With The Migration DSL
create_table :posts do |t|
t.string :title, null: false
# ...
t.timestamps
endcreate_table :posts do |t|
t.string :title, null: false
# ...
t.column :created_at, :timestamptz, null: false
t.column :updated_at, :timestamptz, null: false
endLast updated