docbrown/db/migrate/20190121172642_add_inbox_to_user.rb
2019-03-15 14:39:57 -04:00

5 lines
134 B
Ruby

class AddInboxToUser < ActiveRecord::Migration[5.1]
def change
add_column :users, :inbox, :string, default: "private"
end
end