-- Optional: loads the same sample data as the original demo, so the
-- API can be smoke-tested against familiar numbers.
-- Run AFTER schema.sql. Passwords/invites are NOT seeded here — create
-- the first Exco login via the invite flow (see README-DEPLOY.md).

INSERT INTO members (member_number, name, phone, email, balance, monthly_contribution, is_exco) VALUES
  ('PSC-0142', 'Adaeze Okonkwo', NULL, NULL, 482300.00, 25000.00, 0),
  ('PSC-0098', 'Tunde Bakare',   NULL, NULL, 615000.00, 40000.00, 0),
  ('PSC-0211', 'Ifeoma Chukwu',  NULL, NULL, 340500.00, 15000.00, 0),
  ('PSC-0057', 'Segun Adeyemi',  NULL, NULL, 728900.00, 50000.00, 0),
  ('PSC-0133', 'Blessing Eze',   NULL, NULL, 256000.00, 20000.00, 0),
  ('PSC-EXCO1', 'Chidi Nnamdi',  NULL, NULL, 0.00, 0.00, 1),
  ('PSC-EXCO2', 'Grace Uche',    NULL, NULL, 0.00, 0.00, 1),
  ('PSC-EXCO3', 'Femi Adisa',    NULL, NULL, 0.00, 0.00, 1);
