2018-09-20 15:54:47 -04:00
|
|
|
exports.up = async function (knex, Promise) {
|
2020-08-12 20:38:24 -04:00
|
|
|
await knex.schema.table("snippets", table => {
|
|
|
|
table.dropColumn("is_anonymous");
|
2018-09-20 15:54:47 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.down = async function(knex, Promise) {
|
2020-08-12 20:38:24 -04:00
|
|
|
await knex.schema.table("snippets", table => {
|
|
|
|
table.integer("is_anonymous").unsigned().notNullable();
|
2018-09-20 15:54:47 -04:00
|
|
|
});
|
|
|
|
};
|