30 lines
675 B
TypeScript
30 lines
675 B
TypeScript
// This file will populate the tables with default values
|
|
|
|
import { dbClient } from '../src/db.ts';
|
|
|
|
console.log('Attempting to insert default actions into command_cnt');
|
|
const actions = [
|
|
'cmd-delete',
|
|
'cmd-info',
|
|
'cmd-report',
|
|
'cmd-setup',
|
|
'cmd-gameSel',
|
|
'btn-gameSel',
|
|
'btn-customAct',
|
|
'btn-createEvt',
|
|
'btn-createWLEvt',
|
|
'btn-joinEvent',
|
|
'btn-joinWLEvent',
|
|
'btn-leaveEvent',
|
|
'btn-altEvent',
|
|
];
|
|
for (const action of actions) {
|
|
await dbClient.execute('INSERT INTO command_cnt(command) values(?)', [action]).catch((e) => {
|
|
console.log(`Failed to insert into database`, e);
|
|
});
|
|
}
|
|
console.log('Insertion done');
|
|
|
|
await dbClient.close();
|
|
console.log('Done!');
|