shlist

share and manage lists between multiple people
Log | Files | Refs

commit f123fed6941142f56723b3d1d9ea50a01d03d509
parent bbf1fc9a37abf9cba8d86bb4b5daf817940ab019
Author: kyle <kyle@0x30.net>
Date:   Sun, 10 Jan 2016 15:16:54 -0700

sl: add date field to list table

Diffstat:
Mserver/sl | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/server/sl b/server/sl @@ -636,6 +636,7 @@ sub create_tables { $db_handle->do(qq{create table if not exists lists( list_id int not null primary key, name text not null, + date int, first_created int not null, last_updated int not null) }) or die $DBI::errstr;