CREATE TABLE IF NOT EXISTS `customer_portal_settings` (
  `id` text PRIMARY KEY NOT NULL,
  `portal_name` text NOT NULL,
  `menu_color` text NOT NULL,
  `menu_text_color` text NOT NULL,
  `accent_color` text NOT NULL,
  `logo_key` text,
  `panel_notifications` integer DEFAULT 1 NOT NULL,
  `email_notifications` integer DEFAULT 1 NOT NULL,
  `sms_notifications` integer DEFAULT 1 NOT NULL,
  `support_module` integer DEFAULT 1 NOT NULL,
  `live_chat` integer DEFAULT 1 NOT NULL,
  `updated_at` integer NOT NULL
);
