mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-24 18:31:45 +01:00
8 lines
267 B
Plaintext
8 lines
267 B
Plaintext
# Defines the schema for the 'analytics' table.
|
|
|
|
DEFINE TABLE IF NOT EXISTS analytics SCHEMALESS;
|
|
|
|
# Custom fields from the Analytics struct
|
|
DEFINE FIELD IF NOT EXISTS page_loads ON analytics TYPE number;
|
|
DEFINE FIELD IF NOT EXISTS visitors ON analytics TYPE number;
|