mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-04-30 22:02:35 +08:00
22 lines
438 B
JavaScript
22 lines
438 B
JavaScript
/* eslint-disable camelcase */
|
|
|
|
exports.shorthands = undefined;
|
|
|
|
exports.up = pgm => {
|
|
pgm.alterColumn('namespaces', 'nonalpha_discount', {
|
|
type: 'numeric'
|
|
})
|
|
pgm.alterColumn('namespaces', 'no_vowel_discount', {
|
|
type: 'numeric'
|
|
})
|
|
};
|
|
|
|
exports.down = pgm => {
|
|
pgm.alterColumn('namespaces', 'nonalpha_discount', {
|
|
type: 'numeric'
|
|
})
|
|
pgm.alterColumn('namespaces', 'no_vowel_discount', {
|
|
type: 'numeric'
|
|
})
|
|
};
|