My fork of airsonic with experimental fixes and improvements. See branch "custom"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
airsonic-custom/airsonic-main/src/main/resources/liquibase/6.3/add-player-mixer.xml

18 lines
812 B

<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 http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
<changeSet id="add-player-mixer_001" author="biconou">
<validCheckSum>8:f3bc74192812dcd68bcf8e5945f5a2ac</validCheckSum>
<preConditions onFail="MARK_RAN">
<not>
<columnExists tableName="player" columnName="mixer" />
</not>
</preConditions>
<addColumn tableName="player">
<column name="mixer" type="${varchar_type}">
<constraints nullable="true" />
</column>
</addColumn>
</changeSet>
</databaseChangeLog>