0
0
instrumental/db/migrate/20200601222558_create_system_keys.rb

12 lines
193 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-03 02:24:53 +09:00
class CreateSystemKeys < ActiveRecord::Migration[5.2]
def change
create_table :system_keys do |t|
t.binary :key
t.timestamps
end
end
end