Version: Using web2py 2.6.4
Steps:
====
1. I used web2py DAL to create a table in ms sql. This ran in production for a while.
2. I downloaded the web2py app to my development machine, and added a column to the table in DAL.
3. When I try to go to the table in web2py admin (database administration) with migrate=True, I get an error message "<class 'pyodbc.ProgrammingError'> ('42S01', "[42S01] [Microsoft][ODBC SQL Server Driver][SQL Server]There is already an object named 'BIG_Mapping' in the database. (2714) (SQLExecDirectW)")
4. The error message shows that web2py is issuing a CREATE command, not the ALTER command (in the error log)
Any suggestions on further troubleshooting? I can alter the table manually but wanted to test migrations through DAL so I understand them for future reference.