20200718124944_description.ts 289 B

12345678910
  1. import * as Knex from "knex";
  2. export async function up(knex: Knex): Promise<any> {
  3. const hasDescription = await knex.schema.hasColumn("links", "description");
  4. if (!hasDescription) {
  5. await knex.schema.alterTable("links", table => {
  6. table.string("description");
  7. });
  8. }
  9. }