Tecnicamente esta terminada la funcionalidad basica

This commit is contained in:
Daniel Cortes
2018-12-28 04:32:35 -03:00
parent b90951e8ca
commit 87fb2f8abb
11 changed files with 299 additions and 105 deletions

View File

@@ -64,6 +64,8 @@ create table ingresos
(
id int(10) unsigned primary key auto_increment,
valor int(10) not null,
nro_inicial varchar(191) not null,
nro_final varchar(191) not null,
tipo_ingreso_id int(10) unsigned not null,
caja_id int(10) unsigned not null,
foreign key fk_tipo_ingreso (tipo_ingreso_id) references tipos_ingreso (id) on update cascade on delete restrict,