feat(api_token): add api_tokens table

This commit is contained in:
Paul Chavard 2022-12-01 10:46:42 +01:00
parent 040009f2c9
commit 47f716f9fa
3 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,11 @@
class CreateAPITokens < ActiveRecord::Migration[6.1]
def change
create_table :api_tokens, id: :uuid do |t|
t.references :administrateur, null: false, foreign_key: true
t.string :encrypted_token, null: false
t.string :name, null: false
t.integer :version, null: false, default: 3
t.timestamps
end
end
end