Subversion Repositories SmartDukaan

Rev

Rev 6031 | Rev 20954 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6031 Rev 20927
Line 15... Line 15...
15
    classdocs
15
    classdocs
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)
-
 
21
    
20
    userWalletHistory = OneToMany("UserWalletHistory")
22
    userWalletHistory = OneToMany("UserWalletHistory")
21
    using_options(shortnames=True)
23
    using_options(shortnames=True)
22
    using_table_options(mysql_engine="InnoDB")
24
    using_table_options(mysql_engine="InnoDB")
23
 
25
 
24
    def __init__(self):
26
    def __init__(self):