@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
13 lines (12 loc) • 404 B
JavaScript
export async function up(knex) {
await knex.schema.alterTable('directus_files', (table) => {
table.integer('focal_point_x').nullable();
table.integer('focal_point_y').nullable();
});
}
export async function down(knex) {
await knex.schema.alterTable('directus_files', (table) => {
table.dropColumn('focal_point_x');
table.dropColumn('focal_point_y');
});
}