разработка для teamcity
This commit is contained in:
parent
5c700b9a90
commit
c7141f980c
@ -3,18 +3,36 @@
|
|||||||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
||||||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
|
||||||
|
|
||||||
|
<changeSet id="2020-09-20-create-table-teamcity-setting" author="upagge">
|
||||||
|
<createTable tableName="teamcity_setting">
|
||||||
|
<column name="chat_id"></column>
|
||||||
|
</createTable>
|
||||||
|
</changeSet>
|
||||||
|
|
||||||
|
<changeSet id="2020-09-21-create-table-teamcity_project" author="upagge">
|
||||||
|
<createTable tableName="teamcity_project">
|
||||||
|
<column name="id" type="varchar(64)">
|
||||||
|
<constraints primaryKey="true" nullable="false"/>
|
||||||
|
</column>
|
||||||
|
<column name="name" type="varchar(300)">
|
||||||
|
<constraints nullable="true"/>
|
||||||
|
</column>
|
||||||
|
<column name="description" type="varchar(400)"/>
|
||||||
|
<column name="url" type="varchar(300)">
|
||||||
|
<constraints nullable="false"/>
|
||||||
|
</column>
|
||||||
|
</createTable>
|
||||||
|
</changeSet>
|
||||||
|
|
||||||
<changeSet id="2020-09-20-create-table-teamcity_builds" author="upagge">
|
<changeSet id="2020-09-20-create-table-teamcity_builds" author="upagge">
|
||||||
<createTable tableName="teamcity_builds">
|
<createTable tableName="teamcity_builds">
|
||||||
<column name="id" type="int">
|
<column name="id" type="int">
|
||||||
<constraints primaryKey="true" nullable="false"/>
|
<constraints primaryKey="true" nullable="false"/>
|
||||||
</column>
|
</column>
|
||||||
|
<column name="number" type="int"/>
|
||||||
|
|
||||||
</createTable>
|
</createTable>
|
||||||
</changeSet>
|
</changeSet>
|
||||||
|
|
||||||
<changeSet id="2020-09-20-create-table-teamcity-setting" author="upagge">
|
|
||||||
<createTable tableName="teamcity_setting">
|
|
||||||
<column name=""></column>
|
|
||||||
</createTable>
|
|
||||||
</changeSet>
|
|
||||||
|
|
||||||
</databaseChangeLog>
|
</databaseChangeLog>
|
Loading…
Reference in New Issue
Block a user