Is there any difference between:

db.define_table('sample_table,
    Field('sample_field', 'text'),
    Filed('referenced_field', db.another_table))

and

db.define_table('sample_table,
    Field('sample_field', 'text'),
    Filed('referenced_field', ' reference another_table'))

?

-- 



Reply via email to