9902345291
muahahahah
12 lines
219 B
Ruby
12 lines
219 B
Ruby
# frozen_string_literal: true
|
|
class CreateKeyManagements < ActiveRecord::Migration
|
|
def change
|
|
create_table :key_managements do |t|
|
|
t.string :iv
|
|
t.integer :user_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|