exquisite_corpse / schema.sql

@ master | history


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