UNPKG

@tanglemedia/directus-collection-embed

Version:

Installs the Embed Collection to your Directus project.

14 lines (11 loc) 367 B
const COLLECTION_NAME = "tngl_embed"; export async function up(knex) { await knex.schema.alterTable(COLLECTION_NAME, function (table) { table.string("type").defaultTo("custom").alter(); }); } export async function down(knex) { await knex.schema.alterTable(COLLECTION_NAME, function (table) { table.string("type").defaultTo("general").alter(); }); }