#91 -- Fix db
This commit is contained in:
parent
8d31dc36b3
commit
1c62c520e9
@ -20,4 +20,30 @@
|
||||
referencedTableName="time_series"
|
||||
referencedColumnNames="id"/>
|
||||
</changeSet>
|
||||
<changeSet author="orion" id="20230422-210000-1">
|
||||
<sql>
|
||||
delete
|
||||
from time_series
|
||||
where time_series_type = 'AUTHORS';
|
||||
delete
|
||||
from rule
|
||||
where first_antecedent = 'AUTHORS'
|
||||
OR second_antecedent = 'AUTHORS';
|
||||
delete
|
||||
from time_series
|
||||
where time_series_type = 'AUTHOR_COMPLETED_ISSUES';
|
||||
delete
|
||||
from rule
|
||||
where first_antecedent = 'AUTHOR_COMPLETED_ISSUES'
|
||||
OR second_antecedent = 'AUTHOR_COMPLETED_ISSUES';
|
||||
delete
|
||||
from time_series
|
||||
where time_series_type = 'AUTHOR_ISSUES';
|
||||
delete
|
||||
from rule
|
||||
where first_antecedent = 'AUTHOR_ISSUES'
|
||||
OR second_antecedent = 'AUTHOR_ISSUES';
|
||||
|
||||
</sql>
|
||||
</changeSet>
|
||||
</databaseChangeLog>
|
Loading…
Reference in New Issue
Block a user