Message for page change script

This commit is contained in:
James Taylor
2009-08-24 16:38:24 -04:00
parent 03bc248e9c
commit 400ed1ce37
@@ -1,3 +1,9 @@
"""
Migration script to add support for "Pages".
1) Creates Page and PageRevision tables
2) Adds username column to User table
"""
from sqlalchemy import *
from migrate import *
from migrate.changeset import *
@@ -31,6 +37,7 @@ PageRevision_table = Table( "page_revision", metadata,
)
def upgrade():
print __doc__
metadata.reflect()
try:
Page_table.create()