mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
5 lines
182 B
Ruby
5 lines
182 B
Ruby
class AddCurrentVersionToApps < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_reference :apps, :current_version, foreign_key: { to_table: 'app_versions' }, type: :uuid
|
|
end
|
|
end
|