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

6 lines
125 B
Ruby

class AddDarkToUsers < ActiveRecord::Migration
def change
add_column :users, :dark, :boolean, default: false
end
end