summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-09-02 00:08:27 +0000
committerGerrit Code Review <review@openstack.org>2016-09-02 00:08:27 +0000
commit816d26046af0482aa52a5b8faafe8ed1591cf8c6 (patch)
tree7345fa2792bc42487452fc5caf27ad5a83bb97de
parent9a87dd509c414d002999e8fc4e4ebbc4b968e292 (diff)
parentffee044c5a8c9975b4bc533ba43ee24980aa5cd7 (diff)
downloadkeystone-816d26046af0482aa52a5b8faafe8ed1591cf8c6.tar.gz
Merge "Fixes spelling mistakes"10.0.0.0b3
-rw-r--r--keystone/common/sql/contract_repo/versions/002_password_created_at_not_nullable.py10
1 files 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 45fb7979a..da2981e0d 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.