9 lines
193 B
Ruby
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
|