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

add regulating terminal for converter station #48

Merged
merged 4 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,4 @@ class VscIT extends AbstractVscTest {
public void testSetterGetterInMultiVariants() {
//FIXME remove when we fix primary key constraints violation on DB
}

@Test
@Override
public void testRegulatingTerminal() {
// FIXME implement VscConverterStation.setRegulatingTerminal
}

@Test
@Override
public void testVscConverterStationAdder() {
// FIXME implement VscConverterStation.setRegulatingTerminal
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="braquartdav" id="1719233731805-1">
<addColumn tableName="vscconverterstation">
<column name="regulatingterminal" type="TEXT"/>
</addColumn>
</changeSet>
</databaseChangeLog>
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,7 @@ databaseChangeLog:
- include:
file: changesets/changelog_20240701T114700Z.xml
relativeToChangelogFile: true

- include:
file: changesets/changelog_20240711T130300Z.xml
relativeToChangelogFile: true
Loading