mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 12:04:08 +00:00
* Add institution management * Allow user to select institution on create or edit * Improve redirect behavior * Final cleanup * i18n normalization
6 lines
159 B
Ruby
6 lines
159 B
Ruby
class AddInstitutionToAccounts < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_reference :accounts, :institution, foreign_key: true, type: :uuid
|
|
end
|
|
end
|