Add Column

Cancel

Current Schema

CREATE TABLE `managers`  (
  `id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
  `discord_id` text NOT NULL,
  `username` text NOT NULL,
  `is_active` integer DEFAULT true NOT NULL,
  `created_at` text DEFAULT (datetime('now'))
)