server/test/data/migratedapp/schema.py
branchstable
changeset 3546 f0aecddf367e
parent 3543 ed152fe5aa8b
child 3877 7ca53fc72a0a
child 4212 ab6573088b4a
equal deleted inserted replaced
3544:188d86631c45 3546:f0aecddf367e
    86 
    86 
    87 
    87 
    88 class Personne(EntityType):
    88 class Personne(EntityType):
    89     nom    = String(fulltextindexed=True, required=True, maxsize=64)
    89     nom    = String(fulltextindexed=True, required=True, maxsize=64)
    90     prenom = String(fulltextindexed=True, maxsize=64)
    90     prenom = String(fulltextindexed=True, maxsize=64)
    91     civility   = String(maxsize=1, default='M')
    91     civility   = String(maxsize=1, default='M', fulltextindexed=True)
    92     promo  = String(vocabulary=('bon','pasbon'))
    92     promo  = String(vocabulary=('bon','pasbon'))
    93     titre  = String(fulltextindexed=True, maxsize=128)
    93     titre  = String(fulltextindexed=True, maxsize=128)
    94     adel   = String(maxsize=128)
    94     adel   = String(maxsize=128)
    95     ass    = String(maxsize=128)
    95     ass    = String(maxsize=128)
    96     web    = String(maxsize=128)
    96     web    = String(maxsize=128)