mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
5 lines
166 B
Ruby
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
|