UNPKG

@tanglemedia/directus-collection-flex-editor

Version:

Creates the flex table and some basic related nodes like image, resource, embed, and section

10 lines (6 loc) 229 B
import { addFlexContentField } from "./helpers/flex-content.mjs"; const COLLECTION_NAME = "tngl_page"; export async function up(knex) { await addFlexContentField(knex, COLLECTION_NAME); } export async function down(knex) {}