exquisite_corpse / schema.sql

@ 715c861ce7882cf4b3ba873efee273b07d286bbf | history


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