listing26-3.sql 190 B

1234567
  1. create table messages (
  2. id integer primary key autoincrement,
  3. subject text not null,
  4. sender text not null,
  5. reply_to int,
  6. text text not null
  7. );