ToolJet/db/migrate/20210401070617_add_organization_to_apps.rb
2021-04-01 16:29:27 +05:30

5 lines
166 B
Ruby

class AddOrganizationToApps < ActiveRecord::Migration[6.1]
def change
add_reference :apps, :organization, null: false, foreign_key: true, type: :uuid
end
end