apskel-pos-backend/migrations/000036_add_deleted_at_to_units.down.sql

3 lines
140 B
MySQL
Raw Normal View History

2025-08-08 00:22:28 +07:00
-- Remove deleted_at column from units table
DROP INDEX IF EXISTS idx_units_deleted_at;
ALTER TABLE units DROP COLUMN IF EXISTS deleted_at;