Base de Datos de mis_Contactos

.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 E_Mails (ID integer, Direccion text);
CREATE INDEX IDT ON Telefonos(Id);
CREATE INDEX IDE ON E_Mails(Id);