vanikam/migrations/20241007081336_emp_verification_otp.sql
Aravinth Manivannan b4c9e025bc
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: impl idnetity DB adapters and View for employee aggregate
2024-10-08 16:39:10 +05:30

11 lines
370 B
SQL

-- SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
--
-- SPDX-License-Identifier: AGPL-3.0-or-later
CREATE TABLE IF NOT EXISTS emp_verification_otp (
otp INTEGER NOT NULL UNIQUE,
created_at timestamp with time zone DEFAULT (CURRENT_TIMESTAMP),
purpose TEXT NOT NULL,
emp_id UUID NOT NULL,
ID SERIAL PRIMARY KEY NOT NULL
);