Support for getting/setting remote config variables

This commit is contained in:
Moxie Marlinspike
2019-12-13 14:57:57 -08:00
parent 9d77f8dcd2
commit 08a70664f4
14 changed files with 722 additions and 0 deletions

View File

@@ -273,4 +273,24 @@
</createIndex>
</changeSet>
<changeSet id="12" author="moxie">
<createTable tableName="remote_config">
<column name="id" type="bigint" autoIncrement="true">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="name" type="text">
<constraints nullable="false" unique="true"/>
</column>
<column name="percentage" type="int">
<constraints nullable="false"/>
</column>
<column name="uuids" type="text []">
<constraints nullable="false"/>
</column>
</createTable>
</changeSet>
</databaseChangeLog>