20 lines
895 B
XML

<?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
https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.8.xsd">
<changeSet id="gates" author="universall">
<createTable tableName="gates">
<column name="id" type="INTEGER" autoIncrement="true">
<constraints primaryKey="true"/>
</column>
<column name="code" type="BIGINT">
<constraints unique="true" nullable="false"/>
</column>
<column name="is_active" type="BOOLEAN" defaultValue="true"/>
<column name="isacsblocked" type="BOOLEAN" defaultValue="true"/>
</createTable>
</changeSet>
</databaseChangeLog>