create.sql 217 B

1234567891011
  1. -- Creates the tweet database
  2. -- Also: reference model for the application
  3. CREATE TABLE IF NOT EXISTS posts (
  4. id INTEGER PRIMARY KEY AUTOINCREMENT,
  5. content TEXT NOT NULL,
  6. image TEXT,
  7. used INTEGER
  8. );