Fixes spelling mistakes

Change-Id: I00fb75f70e8e6cab7d9588913bae193909ab66e1
This commit is contained in:
David Stanek 2016-09-01 19:42:03 +00:00 committed by Steve Martinelli
parent 2b70175282
commit ffee044c5a
1 changed files with 5 additions and 5 deletions

View File

@ -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.