first commit

This commit is contained in:
2024-06-03 18:43:35 +02:00
parent 2da01a3f6e
commit f501d519af
883 changed files with 71550 additions and 2 deletions

View File

@ -0,0 +1,28 @@
CREATE DATABASE IF NOT EXISTS quotas;
USE quotas;
CREATE TABLE IF NOT EXISTS Global (
date TIMESTAMP PRIMARY KEY,
total BIGINT,
agora BIGINT,
postfix BIGINT,
nextcloud BIGINT
);
CREATE TABLE IF NOT EXISTS Utilisateur (
date TIMESTAMP,
utilisateur VARCHAR(50) ,
limite INT,
total BIGINT,
postfix BIGINT,
nextcloud BIGINT
);
CREATE TABLE IF NOT EXISTS Associations (
date TIMESTAMP PRIMARY KEY,
associations VARCHAR(50),
total BIGINT,
agora BIGINT,
postfix BIGINT,
nextcloud BIGINT
);