Agregado nro z inicial y nro z final a tabla ingresos
This commit is contained in:
@@ -98,7 +98,6 @@ create table documentos
|
||||
foreign key (caja_id) references caja (id) on update cascade on delete restrict
|
||||
);
|
||||
|
||||
|
||||
insert into tipos_egreso (nombre)
|
||||
values ('Factura Materia Prima'),
|
||||
('Factura Gastos Generales'),
|
||||
@@ -116,5 +115,12 @@ insert into tipos_ingreso (nombre)
|
||||
values ('Boletas Fiscales'),
|
||||
('Boletas Manuales'),
|
||||
('Facturas'),
|
||||
('Guias')
|
||||
('Guias');
|
||||
|
||||
/*
|
||||
Primera Migracion, se agrega las columnas de nro de z inicial y final para el ingreso.
|
||||
*/
|
||||
|
||||
alter table ingresos add column nro_z_inicial text;
|
||||
alter table ingresos add column nro_z_final text;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user