Files
Jellystat/SQL Scripts/1. CREATE DATABASE jfstat.sql
Thegan Govender 582a39918e full change to statistics
1) Created components for statistic reporting.
2) Database changes and PROC/Function creations. Still need to make MOST VIEWED LIBRARIES/CLIENTS/ MOST ACTIVE USERS dynamically load with date range (Function Creation on DB side)
2023-03-19 22:01:40 +02:00

13 lines
266 B
SQL

-- Database: jfstat
-- DROP DATABASE IF EXISTS jfstat;
CREATE DATABASE jfstat
WITH
OWNER = jfstat
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.utf8'
LC_CTYPE = 'en_US.utf8'
TABLESPACE = pg_default
CONNECTION LIMIT = -1
IS_TEMPLATE = False;