thirteen-tien-len/db/migrate/20230709122324_create_soft_token_principal.rb

9 lines
193 B
Ruby

class CreateSoftTokenPrincipal < ActiveRecord::Migration[5.2]
def change
create_table :soft_token_principals do |t|
t.string :soft_token
t.string :principal
end
end
end