Enable "pgcrypto" postgres engine

This commit is contained in:
Artur Beljajev 2018-06-12 07:25:39 +03:00
parent 157b383738
commit 4b977dc195
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,5 @@
class EnablePgcryptoExt < ActiveRecord::Migration
def change
enable_extension 'pgcrypto'
end
end