+/- table definition

Query

CREATE TABLE replies  (
  id INTEGER PRIMARY KEY AUTOINCREMENT,
  post_id INTEGER NOT NULL,
  name TEXT,
  content TEXT NOT NULL,
  timestamp TEXT,
  ip TEXT,
  FOREIGN KEY (post_id) REFERENCES pastes(id) ON DELETE CASCADE
)
Use Shift + Up/Down to navigate recently-executed queries