main
rb 12 lines 305 Bytes
Raw
1 class CreateSshKeys < ActiveRecord::Migration[8.1]
2 def change
3 create_table :ssh_keys do |t|
4 t.references :user, null: false, foreign_key: true
5 t.string :title, null: false
6 t.text :key_text, null: false
7 t.string :fingerprint, null: false
8
9 t.timestamps
10 end
11 end
12 end