From 25c5e2d1cbf724aef689a601bd3977aec538bb35 Mon Sep 17 00:00:00 2001 From: Navy Date: Sat, 8 Aug 2020 22:01:11 +0300 Subject: [PATCH] table --- structure/storage/tables/mariadb/Activity.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 structure/storage/tables/mariadb/Activity.js 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