/* mysql -u todo --password=eeSh0Uz5 -h mysql.dabase.com todo < tables.mysql */ CREATE TABLE todo ( id serial primary key, title text, created timestamp default now(), done boolean default '0' );