diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-07-13 23:28:11 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-07-13 23:28:11 -0700 |
commit | 692a52be1c5b2c1f08d04f5eed1b73b31a9539e0 (patch) | |
tree | 128f48cb666bca89630847cfd446df9296698788 /schema/changelog-4.10.xml | |
parent | 47c35e66193d1dda4db5c326c9d39709aee3e2a6 (diff) | |
download | trackermap-server-692a52be1c5b2c1f08d04f5eed1b73b31a9539e0.tar.gz trackermap-server-692a52be1c5b2c1f08d04f5eed1b73b31a9539e0.tar.bz2 trackermap-server-692a52be1c5b2c1f08d04f5eed1b73b31a9539e0.zip |
Collect protocol statistics
Diffstat (limited to 'schema/changelog-4.10.xml')
-rw-r--r-- | schema/changelog-4.10.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/schema/changelog-4.10.xml b/schema/changelog-4.10.xml new file mode 100644 index 000000000..d7b8b5c59 --- /dev/null +++ b/schema/changelog-4.10.xml @@ -0,0 +1,17 @@ +<?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.10"> + + <changeSet author="author" id="changelog-4.10"> + + <addColumn tableName="tc_statistics"> + <column name="protocols" type="VARCHAR(4096)" /> + </addColumn> + + </changeSet> + +</databaseChangeLog> |