aboutsummaryrefslogtreecommitdiff
path: root/schema/changelog-4.15.xml
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2021-12-27 20:48:47 -0600
committerIván Ávalos <avalos@disroot.org>2021-12-27 20:48:47 -0600
commitaa59b968c7d6a89b8e6285647ab2e6e62f02cf7f (patch)
treee74474e6b6bd75a71ac79bdbd31b9237a7b3c2d6 /schema/changelog-4.15.xml
parentf03b999d6d17e53c1c1e1aa2f9271d03f12f2264 (diff)
downloadtraccar-server-aa59b968c7d6a89b8e6285647ab2e6e62f02cf7f.tar.gz
traccar-server-aa59b968c7d6a89b8e6285647ab2e6e62f02cf7f.tar.bz2
traccar-server-aa59b968c7d6a89b8e6285647ab2e6e62f02cf7f.zip
Revert "Merge branch 'master' into suntech-fixes"
This reverts commit f03b999d6d17e53c1c1e1aa2f9271d03f12f2264, reversing changes made to 3a528ddc88f72f39ff9566cf5e0f54938b1584ef.
Diffstat (limited to 'schema/changelog-4.15.xml')
-rw-r--r--schema/changelog-4.15.xml64
1 files changed, 0 insertions, 64 deletions
diff --git a/schema/changelog-4.15.xml b/schema/changelog-4.15.xml
deleted file mode 100644
index 57b9b341a..000000000
--- a/schema/changelog-4.15.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<databaseChangeLog
- xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
- http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd"
- logicalFilePath="changelog-4.15">
-
- <changeSet author="author" id="changelog-4.15">
-
- <createTable tableName="tc_orders">
- <column name="id" type="INT" autoIncrement="true">
- <constraints primaryKey="true" />
- </column>
- <column name="uniqueid" type="VARCHAR(128)">
- <constraints nullable="false" />
- </column>
- <column name="description" type="VARCHAR(512)" />
- <column name="fromAddress" type="VARCHAR(512)" />
- <column name="toAddress" type="VARCHAR(512)" />
- <column name="attributes" type="VARCHAR(4000)">
- <constraints nullable="false" />
- </column>
- </createTable>
-
- <createTable tableName="tc_user_order">
- <column name="userid" type="INT">
- <constraints nullable="false" />
- </column>
- <column name="orderid" type="INT">
- <constraints nullable="false" />
- </column>
- </createTable>
-
- <addForeignKeyConstraint baseTableName="tc_user_order" baseColumnNames="userid" constraintName="fk_user_order_userid" referencedTableName="tc_users" referencedColumnNames="id" onDelete="CASCADE" />
- <addForeignKeyConstraint baseTableName="tc_user_order" baseColumnNames="orderid" constraintName="fk_user_order_orderid" referencedTableName="tc_orders" referencedColumnNames="id" onDelete="CASCADE" />
-
- <createTable tableName="tc_group_order">
- <column name="groupid" type="INT">
- <constraints nullable="false" />
- </column>
- <column name="orderid" type="INT">
- <constraints nullable="false" />
- </column>
- </createTable>
-
- <addForeignKeyConstraint baseTableName="tc_group_order" baseColumnNames="groupid" constraintName="fk_group_order_groupid" referencedTableName="tc_groups" referencedColumnNames="id" onDelete="CASCADE" />
- <addForeignKeyConstraint baseTableName="tc_group_order" baseColumnNames="orderid" constraintName="fk_group_order_orderid" referencedTableName="tc_orders" referencedColumnNames="id" onDelete="CASCADE" />
-
- <createTable tableName="tc_device_order">
- <column name="deviceid" type="INT">
- <constraints nullable="false" />
- </column>
- <column name="orderid" type="INT">
- <constraints nullable="false" />
- </column>
- </createTable>
-
- <addForeignKeyConstraint baseTableName="tc_device_order" baseColumnNames="deviceid" constraintName="fk_device_order_deviceid" referencedTableName="tc_devices" referencedColumnNames="id" onDelete="CASCADE" />
- <addForeignKeyConstraint baseTableName="tc_device_order" baseColumnNames="orderid" constraintName="fk_device_order_orderid" referencedTableName="tc_orders" referencedColumnNames="id" onDelete="CASCADE" />
-
- </changeSet>
-
-</databaseChangeLog>