-- ============================================================
--  Magic Tech — صرف مواد: السماح بمادة كتابة حرّة (خارج الستوك)
--  شغّله مرة واحدة في Supabase → SQL Editor → Run
-- ============================================================

-- 1) عمود نصّي لاسم المادة المكتوبة يدوياً
alter table public.material_issue_items add column if not exists custom_name text;

-- 2) اجعل item_id اختياري (المواد الكتابية ما إلها صنف بالستوك)
alter table public.material_issue_items alter column item_id drop not null;

-- تم. الواجهة بتستخدمه تلقائياً بعد رفع النسخة.
