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