exquisite_corpse / schema.sql

@ c26ea8e6521b02451c9483be533cf2d1f1f36070 | history


drop table if exists entries;
create table entries (
  id integer primary key autoincrement,
  text text not null
);