aboutsummaryrefslogtreecommitdiff
path: root/schema/changelog-3.6.xml
diff options
context:
space:
mode:
authordrecchia <danilo@deltatecnologia.com>2016-06-09 20:34:48 -0300
committerdrecchia <danilo@deltatecnologia.com>2016-06-09 20:34:48 -0300
commit3f19cd0c34e5454f5f1feed3465c45ac638cb0d2 (patch)
tree7cad99e552536f2d0a2b295ee81939b195d77a66 /schema/changelog-3.6.xml
parent5a2c64cd99134e98e311d694a76d3d22703496c2 (diff)
downloadtraccar-server-3f19cd0c34e5454f5f1feed3465c45ac638cb0d2.tar.gz
traccar-server-3f19cd0c34e5454f5f1feed3465c45ac638cb0d2.tar.bz2
traccar-server-3f19cd0c34e5454f5f1feed3465c45ac638cb0d2.zip
- Clean docker integration.
Diffstat (limited to 'schema/changelog-3.6.xml')
-rw-r--r--schema/changelog-3.6.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/schema/changelog-3.6.xml b/schema/changelog-3.6.xml
new file mode 100644
index 000000000..378ec741f
--- /dev/null
+++ b/schema/changelog-3.6.xml
@@ -0,0 +1,34 @@
+<?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">
+
+ <changeSet author="author" id="changelog-3.6">
+
+ <createTable tableName="events">
+ <column name="id" type="INT" autoIncrement="true">
+ <constraints primaryKey="true" />
+ </column>
+ <column name="type" type="VARCHAR(128)">
+ <constraints nullable="false" />
+ </column>
+ <column name="servertime" type="TIMESTAMP">
+ <constraints nullable="false" />
+ </column>
+ <column name="deviceid" type="INT" />
+ <column name="positionid" type="INT" />
+ <column name="attributes" type="VARCHAR(4096)">
+ <constraints nullable="false" />
+ </column>
+ </createTable>
+
+ <addForeignKeyConstraint baseTableName="events" baseColumnNames="deviceid" constraintName="fk_event_deviceid" referencedTableName="devices" referencedColumnNames="id" onDelete="CASCADE" />
+
+ <addColumn tableName="devices">
+ <column name="motion" type="VARCHAR(128)" />
+ </addColumn>
+
+ </changeSet>
+</databaseChangeLog>