aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-12-28 16:51:41 +1300
committerGitHub <noreply@github.com>2017-12-28 16:51:41 +1300
commit6e0be9857bc26c59936d4446ef15488bd90f5150 (patch)
treecec25dcca31ba5c88db721c750f88a0ddb541f8e /schema
parentf128ed17780ad56dfd889d617f518cc0310a96a7 (diff)
parent71ef701357da0b4b5c8214418b6b149e87c16ac2 (diff)
downloadtrackermap-server-6e0be9857bc26c59936d4446ef15488bd90f5150.tar.gz
trackermap-server-6e0be9857bc26c59936d4446ef15488bd90f5150.tar.bz2
trackermap-server-6e0be9857bc26c59936d4446ef15488bd90f5150.zip
Merge pull request #3700 from Abyss777/disable_device2
Implement device disable (simple)
Diffstat (limited to 'schema')
-rw-r--r--schema/changelog-3.16.xml16
-rw-r--r--schema/changelog-master.xml1
2 files changed, 17 insertions, 0 deletions
diff --git a/schema/changelog-3.16.xml b/schema/changelog-3.16.xml
new file mode 100644
index 000000000..f95156133
--- /dev/null
+++ b/schema/changelog-3.16.xml
@@ -0,0 +1,16 @@
+<?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-3.16">
+
+ <changeSet author="author" id="changelog-3.16">
+
+ <addColumn tableName="devices">
+ <column name="disabled" type="BOOLEAN" defaultValueBoolean="false" />
+ </addColumn>
+
+ </changeSet>
+</databaseChangeLog>
diff --git a/schema/changelog-master.xml b/schema/changelog-master.xml
index 58b2a8307..0c6941eed 100644
--- a/schema/changelog-master.xml
+++ b/schema/changelog-master.xml
@@ -16,4 +16,5 @@
<include file="changelog-3.12.xml" relativeToChangelogFile="true" />
<include file="changelog-3.14.xml" relativeToChangelogFile="true" />
<include file="changelog-3.15.xml" relativeToChangelogFile="true" />
+ <include file="changelog-3.16.xml" relativeToChangelogFile="true" />
</databaseChangeLog>