Base de datos mis_contactos

.open --new mis_contactos.db
CREATE TABLE Contactos(id integer primary key, Nombre text, Apellido text);
CREATE TABLE Telefonos(id, Tipo text, Numero text);
CREATE TABLE E_Mails(id integer, Direccion text);
CREATE INDEX tlfid ON Telefonos(id);
CREATE INDEX emailsid ON E_Mails(id);