--- trunk/schema.sql 2005/05/15 16:29:44 16 +++ trunk/schema.sql 2005/05/15 16:32:36 17 @@ -12,6 +12,7 @@ create table lists ( id serial, name text not null, + email text not null, bounce_limit int not null default 3, date timestamp not null default now(), primary key(id) @@ -64,8 +65,8 @@ insert into users (email, full_name) values ('dpavlin@gmail.com', 'DbP'); insert into users (email, full_name) values ('xxx_doesnt_exist_xxx@gmail.com', 'fake'); -insert into lists (name) values ('Just me'); -insert into lists (name) values ('All users'); +insert into lists (name, email) values ('Just me','my-alter-ego@rot13.org'); +insert into lists (name, email) values ('All users','announce@example.com'); insert into user_list (user_id, list_id) select users.id,1 from users limit 1; insert into user_list (user_id, list_id) select users.id,2 from users;