Files
sure/db/migrate/20240201183314_enable_uuid.rb
Josh Pigford 99de24ac70 Initial commit
2024-02-02 09:05:04 -06:00

6 lines
141 B
Ruby

class EnableUuid < ActiveRecord::Migration[7.2]
def change
enable_extension 'pgcrypto' unless extension_enabled?('pgcrypto')
end
end