From ffee044c5a8c9975b4bc533ba43ee24980aa5cd7 Mon Sep 17 00:00:00 2001 From: David Stanek Date: Thu, 1 Sep 2016 19:42:03 +0000 Subject: [PATCH] Fixes spelling mistakes Change-Id: I00fb75f70e8e6cab7d9588913bae193909ab66e1 --- .../versions/002_password_created_at_not_nullable.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/keystone/common/sql/contract_repo/versions/002_password_created_at_not_nullable.py b/keystone/common/sql/contract_repo/versions/002_password_created_at_not_nullable.py index 45fb7979a0..da2981e0d4 100644 --- a/keystone/common/sql/contract_repo/versions/002_password_created_at_not_nullable.py +++ b/keystone/common/sql/contract_repo/versions/002_password_created_at_not_nullable.py @@ -20,11 +20,11 @@ def upgrade(migrate_engine): meta.bind = migrate_engine password = sql.Table('password', meta, autoload=True) - # Because it's difficult to get a timestamp server default working amoung - # all of the supported datbases and versions, I'm choosing to drop and then - # recreate the column as I think this is a more cleaner option. This will - # only impact operators that have already deployed the 105 migration; - # resetting the password created_at for security compliannce features, if + # Because it's difficult to get a timestamp server default working among + # all of the supported databases and versions, I'm choosing to drop and + # then recreate the column as I think this is a more cleaner option. This + # will only impact operators that have already deployed the 105 migration; + # resetting the password created_at for security compliance features, if # enabled. password.c.created_at.drop() # sqlite doesn't support server_default=sql.func.now(), so skipping.