Subversion Repositories SmartDukaan

Rev

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

Rev 1996 Rev 2004
Line 230... Line 230...
230
    using_options(shortnames=True)
230
    using_options(shortnames=True)
231
    using_table_options(mysql_engine="InnoDB")
231
    using_table_options(mysql_engine="InnoDB")
232
 
232
 
233
class Tracker(Entity):
233
class Tracker(Entity):
234
    id = Field(Integer, primary_key=True, autoincrement=True)
234
    id = Field(Integer, primary_key=True, autoincrement=True)
235
    user_id = Field(Integer)
235
    affiliate_id = Field(Integer)
-
 
236
    added_on = Field(DateTime)
236
    using_options(shortnames=True)
237
    using_options(shortnames=True)
237
    using_table_options(mysql_engine="InnoDB")
238
    using_table_options(mysql_engine="InnoDB")
238
 
239
 
239
class TrackLog(Entity):
240
class TrackLog(Entity):
240
    id = Field(Integer, primary_key=True, autoincrement=True)
241
    id = Field(Integer, primary_key=True, autoincrement=True)