aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2023-01-24 09:27:14 -0800
committerAnton Tananaev <anton@traccar.org>2023-01-24 09:56:19 -0800
commit8841cea8676057756f23e1f9a710a5a19ac5e63a (patch)
tree28d2ce91d3975023b561a681f2d2c02448d4b5a1 /schema
parent3771dd156efb068b2f6ba586ec5b951985c40cc5 (diff)
downloadtrackermap-server-8841cea8676057756f23e1f9a710a5a19ac5e63a.tar.gz
trackermap-server-8841cea8676057756f23e1f9a710a5a19ac5e63a.tar.bz2
trackermap-server-8841cea8676057756f23e1f9a710a5a19ac5e63a.zip
Model for scheduled reports
Diffstat (limited to 'schema')
-rw-r--r--schema/changelog-5.6.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/schema/changelog-5.6.xml b/schema/changelog-5.6.xml
index 335f7b3a8..d7768f8e2 100644
--- a/schema/changelog-5.6.xml
+++ b/schema/changelog-5.6.xml
@@ -12,6 +12,63 @@
<column name="motionstreak" type="BOOLEAN" defaultValueBoolean="false" />
</addColumn>
+ <createTable tableName="tc_reports">
+ <column name="id" type="INT" autoIncrement="true">
+ <constraints primaryKey="true" />
+ </column>
+ <column name="type" type="VARCHAR(32)">
+ <constraints nullable="false" />
+ </column>
+ <column name="description" type="VARCHAR(128)">
+ <constraints nullable="false" />
+ </column>
+ <column name="from" type="TIMESTAMP">
+ <constraints nullable="false" />
+ </column>
+ <column name="to" type="TIMESTAMP">
+ <constraints nullable="false" />
+ </column>
+ <column name="attributes" type="VARCHAR(4000)">
+ <constraints nullable="false" />
+ </column>
+ </createTable>
+
+ <createTable tableName="tc_user_report">
+ <column name="userid" type="INT">
+ <constraints nullable="false" />
+ </column>
+ <column name="reportid" type="INT">
+ <constraints nullable="false" />
+ </column>
+ </createTable>
+
+ <addForeignKeyConstraint baseTableName="tc_user_report" baseColumnNames="userid" constraintName="fk_user_report_userid" referencedTableName="tc_users" referencedColumnNames="id" onDelete="CASCADE" />
+ <addForeignKeyConstraint baseTableName="tc_user_report" baseColumnNames="reportid" constraintName="fk_user_report_reportid" referencedTableName="tc_reports" referencedColumnNames="id" onDelete="CASCADE" />
+
+ <createTable tableName="tc_group_report">
+ <column name="groupid" type="INT">
+ <constraints nullable="false" />
+ </column>
+ <column name="reportid" type="INT">
+ <constraints nullable="false" />
+ </column>
+ </createTable>
+
+ <addForeignKeyConstraint baseTableName="tc_group_report" baseColumnNames="groupid" constraintName="fk_group_report_groupid" referencedTableName="tc_groups" referencedColumnNames="id" onDelete="CASCADE" />
+ <addForeignKeyConstraint baseTableName="tc_group_report" baseColumnNames="reportid" constraintName="fk_group_report_reportid" referencedTableName="tc_reports" referencedColumnNames="id" onDelete="CASCADE" />
+
+ <createTable tableName="tc_device_report">
+ <column name="deviceid" type="INT">
+ <constraints nullable="false" />
+ </column>
+ <column name="reportid" type="INT">
+ <constraints nullable="false" />
+ </column>
+ </createTable>
+
+ <addForeignKeyConstraint baseTableName="tc_device_report" baseColumnNames="deviceid" constraintName="fk_device_report_deviceid" referencedTableName="tc_devices" referencedColumnNames="id" onDelete="CASCADE" />
+ <addForeignKeyConstraint baseTableName="tc_device_report" baseColumnNames="reportid" constraintName="fk_device_report_reportid" referencedTableName="tc_reports" referencedColumnNames="id" onDelete="CASCADE" />
+
</changeSet>
</databaseChangeLog>