Skip to content

Commit

Permalink
[Issue comixed#267] Add migration to remove id and added columns from…
Browse files Browse the repository at this point in the history
… reading_list_entries table.
  • Loading branch information
mcpierce committed May 30, 2020
1 parent ee751ce commit f07e10a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>

<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="004_issue-267_update_reading_list_entries_table.xml"
author="mcpierce">

<dropColumn tableName="reading_list_entries"
columnName="id"/>
<dropColumn tableName="reading_list_entries"
columnName="added"/>

</changeSet>
</databaseChangeLog>
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>

<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
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">

<include file="/db/migrations/0.6.0/001_issue-143_add_persisted_task_tables.xml"/>
<include file="/db/migrations/0.6.0/002_issue-120_add_publisher_details_fields.xml"/>
<include file="/db/migrations/0.6.0/003_issue-260_rename_reading_list_created_column.xml"/>
<include file="/db/migrations/0.6.0/004_issue-267_update_reading_list_entries_table.xml"/>

</databaseChangeLog>

0 comments on commit f07e10a

Please sign in to comment.