20200601222558_create_system_keys.rb 193 B

1234567891011
  1. # frozen_string_literal: true
  2. class CreateSystemKeys < ActiveRecord::Migration[5.2]
  3. def change
  4. create_table :system_keys do |t|
  5. t.binary :key
  6. t.timestamps
  7. end
  8. end
  9. end