From 9250076a3a57e7a31cf67542d6a0dfb9b44f25d4 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Sat, 14 Sep 2019 04:02:40 +0500 Subject: [PATCH] Fix code style --- db/migrate/20190911081459_create_x509_tables.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/migrate/20190911081459_create_x509_tables.rb b/db/migrate/20190911081459_create_x509_tables.rb index 94e5b8d..0044f88 100644 --- a/db/migrate/20190911081459_create_x509_tables.rb +++ b/db/migrate/20190911081459_create_x509_tables.rb @@ -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|