.open --new mis_contactos.db
CREATE TABLE contactos(id integer primary key, nombre text, apellido text);
CREATE TABLE telefonos(id integer, tipo text, numero text);
CREATE TABLE email(id integer, direccion text);
CREATE INDEX ID_Telefonos ON telefonos(id);
CREATE INDEX ID_Emails ON email(id);