1
0
Fork 0

Fix code style

This commit is contained in:
Alex Kotov 2019-09-14 04:02:40 +05:00
parent d47a8bba61
commit 9250076a3a
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -31,11 +31,11 @@ class CreateX509Tables < ActiveRecord::Migration[6.0]
end
constraint :asymmetric_keys, :bits, <<~SQL
bits IS NULL OR bits in (2048, 4096)
bits IS NULL OR bits IN (2048, 4096)
SQL
constraint :asymmetric_keys, :curve, <<~SQL
curve IS NULL OR curve in ('prime256v1', 'secp384r1')
curve IS NULL OR curve IN ('prime256v1', 'secp384r1')
SQL
create_table :x509_certificates do |t|