20230605085711_add_time_zone_to_users.rb 153 B

1234567
  1. # frozen_string_literal: true
  2. class AddTimeZoneToUsers < ActiveRecord::Migration[6.1]
  3. def change
  4. add_column :users, :time_zone, :string
  5. end
  6. end