mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-03 21:38:42 +00:00
6 lines
149 B
Ruby
6 lines
149 B
Ruby
|
|
class EnableExtensions < ActiveRecord::Migration[5.1]
|
||
|
|
def change
|
||
|
|
enable_extension 'uuid-ossp'
|
||
|
|
enable_extension 'pgcrypto'
|
||
|
|
end
|
||
|
|
end
|