Set the start date for the new rate as July 1

This commit is contained in:
Rebecca Law
2016-07-07 14:31:50 +01:00
parent 2b7972dc1d
commit 638ea1b12b

View File

@@ -23,7 +23,7 @@ def upgrade():
sa.sql.text(("INSERT INTO provider_rates (id, valid_from, rate, provider_id) "
"VALUES (:id, :valid_from, :rate, (SELECT id FROM provider_details WHERE identifier = 'mmg'))")),
id=uuid.uuid4(),
valid_from=datetime.utcnow(),
valid_from=datetime(2016, 7, 1),
rate=1.65
)
### end Alembic commands ###