table
This commit is contained in:
parent
73e32f030d
commit
25c5e2d1cb
17
structure/storage/tables/mariadb/Activity.js
Normal file
17
structure/storage/tables/mariadb/Activity.js
Normal file
@ -0,0 +1,17 @@
|
||||
const { MariadbTable } = require('../../interfaces/');
|
||||
|
||||
class InfractionsTable extends MariadbTable {
|
||||
|
||||
constructor(client, provider) {
|
||||
|
||||
super(client, provider, {
|
||||
name: 'activity'
|
||||
});
|
||||
|
||||
this.provider = provider;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
module.exports = InfractionsTable;
|
Loading…
Reference in New Issue
Block a user