This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 2f17235b authored by Michael Breu's avatar Michael Breu :speech_balloon:
Browse files

Fixing liquibase

parent 09b58fd3
No related merge requests found
......@@ -31,24 +31,5 @@
</changeSet>
<!-- jhipster-needle-liquibase-add-changeset - JHipster will add changesets here -->
<!--
Load sample data generated with Faker.js
- This data can be easily edited using a CSV editor (or even MS Excel) and
is located in the 'src/main/resources/config/liquibase/fake-data' directory
- By default this data is applied when running with the JHipster 'dev' profile.
This can be customized by adding or removing 'faker' in the 'spring.liquibase.contexts'
Spring Boot configuration key.
-->
<changeSet id="20210414141350-1-data" author="jhipster" context="faker">
<loadData
file="config/liquibase/fake-data/watch_list_entry.csv"
separator=";"
tableName="watch_list_entry">
<column name="id" type="numeric"/>
<column name="exercise_id" type="string"/>
<column name="exercise_name" type="string"/>
<!-- jhipster-needle-liquibase-add-loadcolumn - JHipster (and/or extensions) can add load columns here -->
</loadData>
</changeSet>
</databaseChangeLog>
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-3.9.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.9.xsd">
<changeSet author="Michael Breu (generated)" id="1618843631017-1">
<changeSet author="Michael Breu (generated)" id="20210419144638-1">
<addColumn tableName="watch_list_entry">
<column name="watchlist_id_id" type="bigint">
<constraints nullable="false"/>
......@@ -10,8 +10,7 @@
<changeSet author="Michael Breu (generated)" id="1618843631017-2">
<addForeignKeyConstraint baseColumnNames="watchlist_id_id" baseTableName="watch_list_entry" constraintName="FK67mq6ohpd8j1kdai4exmombni" deferrable="false" initiallyDeferred="false" referencedColumnNames="id" referencedTableName="user_watch_list" validate="true"/>
</changeSet>
<changeSet id="20210414141350-1-data" author="jhipster"
context="faker">
<changeSet id="20210419144638-2-data" author="jhipster" context="faker">
<loadData
file="config/liquibase/fake-data/watch_list_entry.csv" separator=";"
tableName="watch_list_entry">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment