Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[no-jira] added missing jsonAssert #343

Merged
merged 9 commits into from
Aug 8, 2024
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
<version>${jsonassert.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
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.8.xsd">
<changeSet id="1" author="v">
<addPrimaryKey tableName="authors" columnNames="id" constraintName="pk_authors"/>
</changeSet>
<changeSet id="1" author="ewojtach">
<createTable tableName="test_table" >
<column name="test_id" type="INTEGER">
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
ALTER TABLE harness_test_ds.authors ADD PRIMARY KEY (id) NOT ENFORCED
CREATE TABLE harness_test_ds.test_table (test_id INT, test_FK_column INT, PRIMARY KEY (test_id) NOT ENFORCED, CONSTRAINT fk_test FOREIGN KEY (test_FK_column) REFERENCES harness_test_ds.authors(id) NOT ENFORCED)
Loading