+/- table definition

Query

CREATE TABLE packages  (
  id INTEGER PRIMARY KEY AUTOINCREMENT,
  name TEXT NOT NULL,
  speed TEXT NOT NULL,
  price DECIMAL(10,2) NOT NULL,
  tax_rate DECIMAL(5,2) DEFAULT 11.00,
  description TEXT,
  pppoe_profile TEXT DEFAULT 'default',
  is_active BOOLEAN DEFAULT 1,
  created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
  image_filename TEXT NULL,
  status TEXT DEFAULT 'active'
)
Use Shift + Up/Down to navigate recently-executed queries