user auth register

This commit is contained in:
Aditya Siregar
2025-09-18 01:32:01 +07:00
parent c68b536480
commit 65f61b65cf
24 changed files with 2065 additions and 14 deletions
@@ -0,0 +1,8 @@
-- Remove indexes
DROP INDEX IF EXISTS idx_customers_password_hash;
DROP INDEX IF EXISTS idx_customers_phone_number;
-- Remove added columns
ALTER TABLE customers DROP COLUMN IF EXISTS birth_date;
ALTER TABLE customers DROP COLUMN IF EXISTS phone_number;
ALTER TABLE customers DROP COLUMN IF EXISTS password_hash;