diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-13 17:52:28 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-13 17:52:28 +0500 |
commit | 2309d53f52f25efe00f2195a58c448506a2605ab (patch) | |
tree | 9fdddd2384e4e331c1642f919d3db4fb1621cccb /schema/changelog-3.11.xml | |
parent | 633bed5cd14c16d53c7b84ed2c6586915467e1a8 (diff) | |
download | trackermap-server-2309d53f52f25efe00f2195a58c448506a2605ab.tar.gz trackermap-server-2309d53f52f25efe00f2195a58c448506a2605ab.tar.bz2 trackermap-server-2309d53f52f25efe00f2195a58c448506a2605ab.zip |
- Add timezone field to User and Server model
- Pass Velocity DateTool to templates
- Adjusted templates to use timezone
Diffstat (limited to 'schema/changelog-3.11.xml')
-rw-r--r-- | schema/changelog-3.11.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/schema/changelog-3.11.xml b/schema/changelog-3.11.xml index c169e1146..1fdaa3f17 100644 --- a/schema/changelog-3.11.xml +++ b/schema/changelog-3.11.xml @@ -11,7 +11,7 @@ <addColumn tableName="users"> <column name="phone" type="VARCHAR(128)" /> </addColumn> - + <addColumn tableName="notifications"> <column name="sms" type="BOOLEAN" defaultValueBoolean="false" /> </addColumn> @@ -20,6 +20,14 @@ <column name="devicereadonly" type="BOOLEAN" defaultValueBoolean="false" /> </addColumn> + <addColumn tableName="server"> + <column name="timezone" type="VARCHAR(128)" /> + </addColumn> + + <addColumn tableName="users"> + <column name="timezone" type="VARCHAR(128)" /> + </addColumn> + </changeSet> </databaseChangeLog> |