This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/db/migrate/20170320195301_add_utc_time_to_users.rb
2017-06-18 13:11:36 -04:00

6 lines
132 B
Ruby

class AddUtcTimeToUsers < ActiveRecord::Migration
def change
add_column :users, :utc_time, :boolean, default: false
end
end