@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
18 lines (17 loc) • 525 B
JavaScript
import { getHelpers } from '../helpers/index.js';
export async function up(knex) {
const helper = getHelpers(knex).schema;
await helper.changeToType('directus_settings', 'project_color', 'string', {
nullable: true,
default: null,
length: 50,
});
}
export async function down(knex) {
const helper = getHelpers(knex).schema;
await helper.changeToType('directus_settings', 'project_color', 'string', {
nullable: true,
default: '#00C897',
length: 10,
});
}