20190524103556_v0.10.0.js
1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
exports.up = function (knex, Promise) {
return Promise.all([
knex.schema
.table('nota_pedido', function (table) {
table.bigInteger('idListaPrecio').unsigned();
table.dropColumn('idPrecioCondicion');
})
.table('plazo_pago', function (table) {
table.bigInteger('idCliente').unsigned();
table.dropColumn('idPreciosCondiciones');
})
.table('remito', function (table) {
table.bigInteger('idListaPrecio').unsigned();
table.dropColumn('idPrecioCondicion');
})
]);
};
exports.down = function (knex, Promise) {
return Promise.all([
knex.schema
.table('nota_pedido', function (table) {
table.dropColumn('idListaPrecio');
table.bigInteger('idPrecioCondicion').unsigned();
})
.table('plazo_pago', function (table) {
table.dropColumn('idCliente');
table.bigInteger('idPreciosCondiciones').unsigned();
})
.table('remito', function (table) {
table.dropColumn('idListaPrecio');
table.bigInteger('idPrecioCondicion').unsigned();
})
]);
};