Arno Kaimbacher
b06ccae603
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m2s
- mail_settings_controller for setting smtp settings - added view ror rjecting dataset for editor - added new model AppConfig for stroing appwide config values - better validate_chesum.ts command with process chunking - added vue3 apps 'BasicSettings' like email, profile settings - started with 2 multilingual capabilities - npm updates
23 lines
693 B
TypeScript
23 lines
693 B
TypeScript
// node ace make:migration appconfig
|
|
import { BaseSchema } from '@adonisjs/lucid/schema';
|
|
|
|
export default class extends BaseSchema {
|
|
protected tableName = 'appconfigs';
|
|
|
|
async up() {
|
|
this.schema.createTable(this.tableName, (table) => {
|
|
table.increments('id');
|
|
table.string('appid', 32).notNullable();
|
|
table.string('configkey', 64).notNullable();
|
|
table.text('configvalue');
|
|
table.bigInteger('type');
|
|
table.smallint('lazy');
|
|
table.unique(['appid', 'configkey']) // Unique constraint on the combination
|
|
});
|
|
}
|
|
|
|
async down() {
|
|
this.schema.dropTable(this.tableName);
|
|
}
|
|
}
|