Files
automatisch/packages/backend/src/db/migrations/20230303180902_create_usage_data.ee.ts
2023-03-05 17:14:01 +01:00

21 lines
686 B
TypeScript

import { Knex } from 'knex';
import appConfig from '../../config/app';
export async function up(knex: Knex): Promise<void> {
if (!appConfig.isCloud) return;
return knex.schema.createTable('usage_data', (table) => {
table.uuid('id').primary().defaultTo(knex.raw('gen_random_uuid()'));
table.uuid('user_id').references('id').inTable('users');
table.string('consumed_task_count').notNullable();
table.timestamp('next_reset_at').nullable();
table.timestamp('deleted_at').nullable();
table.timestamps(true, true);
});
}
export async function down(knex: Knex): Promise<void> {
if (!appConfig.isCloud) return;
return knex.schema.dropTable('usage_data');
}