"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.up = up; exports.down = down; async function up(db) { await db.schema .createTable('branding_config') .ifNotExists() .addColumn('id', 'text', (c) => c.primaryKey()) .addColumn('organization_id', 'text', (c) => c.notNull().unique()) .addColumn('app_name', 'text') .addColumn('primary_color', 'text') .addColumn('logo_url', 'text') .addColumn('favicon_url', 'text') .addColumn('custom_css', 'text') .addColumn('updated_at', 'integer', (c) => c.notNull()) .execute(); } async function down(db) { await db.schema.dropTable('branding_config').ifExists().execute(); }