mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-01 18:37:31 +00:00
5 lines
149 B
Ruby
5 lines
149 B
Ruby
class AddUserToApps < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_reference :apps, :user, null: true, foreign_key: true, type: :uuid
|
|
end
|
|
end
|