11 lines
189 B
Ruby
11 lines
189 B
Ruby
class CreateKeyManagements < ActiveRecord::Migration
|
|
def change
|
|
create_table :key_managements do |t|
|
|
t.string :iv
|
|
t.integer :user_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|