20200601222558_create_system_keys.rb 162 B

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