Fix date format bug
This commit is contained in:
parent
58377319b9
commit
c339c19cfd
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class Migration(migrations.Migration):
|
||||||
migrations.RunSQL(
|
migrations.RunSQL(
|
||||||
sql=["update hosting_vatrates set stop_date = '2020-06-30' where territory_codes = 'DE' and rate = '0.19'"],
|
sql=["update hosting_vatrates set stop_date = '2020-06-30' where territory_codes = 'DE' and rate = '0.19'"],
|
||||||
reverse_sql=[
|
reverse_sql=[
|
||||||
"update hosting_vatrates set stop_date = '' where stop_date = '2020-06-30' and territory_codes = 'DE' and rate = '0.19'"],
|
"update hosting_vatrates set stop_date = null where stop_date = '2020-06-30' and territory_codes = 'DE' and rate = '0.19'"],
|
||||||
),
|
),
|
||||||
migrations.RunSQL(
|
migrations.RunSQL(
|
||||||
sql=[
|
sql=[
|
||||||
|
|
Loading…
Reference in a new issue