You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
449 B
16 lines
449 B
import { Knex } from 'knex';
|
|
|
|
export async function up(knex: Knex): Promise<void> {
|
|
return knex.schema.createTable('settings', (table) => {
|
|
table.increments('id').primary();
|
|
table.string('key', 100).notNullable().unique();
|
|
table.text('value').notNullable();
|
|
table.text('description');
|
|
table.timestamps(true, true);
|
|
});
|
|
}
|
|
|
|
export async function down(knex: Knex): Promise<void> {
|
|
return knex.schema.dropTable('settings');
|
|
}
|
|
|
|
|