1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00
phorge-phorge/resources/sql/autopatches/20190416.chart.01.storage.sql

7 lines
270 B
MySQL
Raw Normal View History

CREATE TABLE {$NAMESPACE}_fact.fact_chart (
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
chartKey BINARY(12) NOT NULL,
chartParameters LONGTEXT NOT NULL COLLATE {$COLLATE_TEXT},
UNIQUE KEY `key_chart` (chartKey)
) ENGINE=InnoDB, COLLATE {$COLLATE_TEXT};