apskel-pos-backend/migrations/000013_add_partner_id_to_cashier_sessions.down.sql

5 lines
190 B
MySQL
Raw Normal View History

2025-06-27 13:01:39 +07:00
-- Remove partner_id column from cashier_sessions table
ALTER TABLE cashier_sessions DROP COLUMN IF EXISTS partner_id;
-- Remove index
DROP INDEX IF EXISTS idx_cashier_sessions_partner_id;