mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-01-24 09:40:21 +00:00
añadidos limites cuando lomo interior es menor que 10
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
databaseChangeLog:
|
||||
- changeSet:
|
||||
id: 0018-change-presupuesto-ch-3
|
||||
author: jjo
|
||||
preConditions:
|
||||
- dbms:
|
||||
type: mysql
|
||||
|
||||
changes:
|
||||
- sql:
|
||||
splitStatements: false
|
||||
stripComments: true
|
||||
sql: |
|
||||
ALTER TABLE presupuesto
|
||||
DROP CHECK presupuesto_chk_3;
|
||||
|
||||
rollback:
|
||||
- sql:
|
||||
splitStatements: false
|
||||
stripComments: true
|
||||
sql: |
|
||||
ALTER TABLE presupuesto
|
||||
ADD CONSTRAINT presupuesto_chk_3
|
||||
CHECK (tipo_cubierta BETWEEN 0 AND 2);
|
||||
@ -32,4 +32,6 @@ databaseChangeLog:
|
||||
- include:
|
||||
file: db/changelog/changesets/0016-fix-enum-estado-pedidos-lineas.yml
|
||||
- include:
|
||||
file: db/changelog/changesets/0017-add-fecha-entrega-to-pedidos-lineas.yml
|
||||
file: db/changelog/changesets/0017-add-fecha-entrega-to-pedidos-lineas.yml
|
||||
- include:
|
||||
file: db/changelog/changesets/0018-change-presupuesto-ch-3.yml
|
||||
Reference in New Issue
Block a user