Hello mate,

I'm using Web2py Version 1.58 and I can't create a table when
"migrate=False"

In this case the table can't be created:
db.define_table('table_name',
              SQLField('first_name', length=128,default=''),
              SQLField('last_name', length=128,default=''),
              migrate=False)

In this case the table can be created successfully:

db.define_table('table_name',
              SQLField('first_name', length=128,default=''),
              SQLField('last_name', length=128,default=''),
              migrate=True)

Does anyone already notice this problem ? If yes any hints ?

Thanks,
Cheers,
Yannick P.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to