Add support for server-side feature flags

This commit is contained in:
Jon Chambers
2020-08-26 20:27:33 -04:00
committed by GitHub
parent b9df028bfb
commit 1ef3546822
12 changed files with 511 additions and 2 deletions

View File

@@ -324,4 +324,14 @@
</addColumn>
</changeSet>
<changeSet id="19" author="jon">
<createTable tableName="feature_flags">
<column name="flag" type="text">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="active" type="boolean"/>
</createTable>
</changeSet>
</databaseChangeLog>