Quantcast
Channel: Liquibase Forums
Viewing all articles
Browse latest Browse all 2993

Liquibase generates columns with the same name (Sybase)

$
0
0
I have a DB in sybase and I have some tables with the same name but with a capital letter (fruit and fruiT), as well as views with the same name as the tables (Fruit), When I generate the XML with the DB information , With the command --generateChangeLog generates an XML with a single table, but with the columns of the two tables and the view, for example if in the tables I have 3 columns and in the same view, Liquibase generates a file with a table And 9 columns Help

      <createTable tableName="PersoN">
        <column name="id" type="INT">
            <constraints nullable="false"/>
        </column>
        <column name="nombre" type="VARCHAR(200)">
            <constraints nullable="false"/>
        </column>
        <column name="edad" type="INT">
            <constraints nullable="false"/>
        </column>
        <column name="id" type="INT">
            <constraints nullable="false"/>
        </column>
        <column name="nombre" type="VARCHAR(200)">
            <constraints nullable="false"/>
        </column>
        <column name="edad" type="INT">
            <constraints nullable="false"/>
        </column>
        <column name="id" type="INT">
            <constraints nullable="false"/>
        </column>
        <column name="nombre" type="VARCHAR(200)">
            <constraints nullable="false"/>
        </column>
        <column name="edad" type="INT">
            <constraints nullable="false"/>
        </column>
    </createTable>

Viewing all articles
Browse latest Browse all 2993

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>