docbrown/db/migrate/20190417171019_add_inbox_instructions_to_users.rb
2019-04-17 15:49:48 -04:00

5 lines
138 B
Ruby

class AddInboxInstructionsToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :inbox_guidelines, :string
end
end