From dcc080e432e6af1e06824b25566faa85851601f1 Mon Sep 17 00:00:00 2001 From: jenz Date: Tue, 10 Feb 2026 16:03:34 +0100 Subject: [PATCH] forgot adding sql create tables file --- stoat_admin_activity_ze/sql/create_tables.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 stoat_admin_activity_ze/sql/create_tables.sql diff --git a/stoat_admin_activity_ze/sql/create_tables.sql b/stoat_admin_activity_ze/sql/create_tables.sql new file mode 100644 index 0000000..e6708a0 --- /dev/null +++ b/stoat_admin_activity_ze/sql/create_tables.sql @@ -0,0 +1,7 @@ +CREATE TABLE unloze_playtimestats.admin_activity_ze ( + `name` varchar(255) NOT NULL, + `steamid` varchar(255) NOT NULL, + `ze_time_start_week` bigint(20) NOT NULL, + `inserted_on` datetime DEFAULT current_timestamp(), + PRIMARY KEY (`steamid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;