diff --git a/structure/storage/tables/mariadb/Activity.js b/structure/storage/tables/mariadb/Activity.js new file mode 100644 index 0000000..f25cd8a --- /dev/null +++ b/structure/storage/tables/mariadb/Activity.js @@ -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; \ No newline at end of file