-- migrations/005_customers_seed_permissions.sql

INSERT IGNORE INTO permissions (code, name, module, created_at) VALUES
('customers.view','Lihat Customer','customers',NOW()),
('customers.add','Tambah Customer','customers',NOW()),
('customers.edit','Edit Customer','customers',NOW()),
('customers.export','Export Customer (CSV/VCF)','customers',NOW()),
('customers.import','Import Customer (CSV)','customers',NOW());
