Subversion Repositories SmartDukaan

Rev

Rev 20954 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20954 Rev 20957
Line 16... Line 16...
16
    '''
16
    '''
17
    id = Field(Integer, primary_key=True, autoincrement=True)
17
    id = Field(Integer, primary_key=True, autoincrement=True)
18
    userId = Field(Integer)
18
    userId = Field(Integer)
19
    amount = Field(Integer)
19
    amount = Field(Integer)
20
    refundable_amount = Field(Integer)
20
    refundable_amount = Field(Integer)
21
    
-
 
22
    userWalletHistory = OneToMany("UserWalletHistory")
21
    userWalletHistory = OneToMany("UserWalletHistory")
23
    using_options(shortnames=True)
22
    using_options(shortnames=True)
24
    using_table_options(mysql_engine="InnoDB")
23
    using_table_options(mysql_engine="InnoDB")
25
 
24
 
26
    def __init__(self):
25
    def __init__(self):