Subversion Repositories SmartDukaan

Rev

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

Rev 3187 Rev 3378
Line 225... Line 225...
225
    id = Field(Integer, primary_key=True, autoincrement=True)
225
    id = Field(Integer, primary_key=True, autoincrement=True)
226
    added_on = Field(DateTime)
226
    added_on = Field(DateTime)
227
    affiliate = ManyToOne("Affiliate")
227
    affiliate = ManyToOne("Affiliate")
228
    user_id = Field(Integer)
228
    user_id = Field(Integer)
229
    event = Field(String(100))
229
    event = Field(String(100))
-
 
230
    event_id = Field(Integer)
230
    url = Field(String(200))
231
    url = Field(String(200))
231
    data = Field(String(200))
232
    data = Field(String(200))
232
    using_options(shortnames=True)
233
    using_options(shortnames=True)
233
    using_table_options(mysql_engine="InnoDB")
234
    using_table_options(mysql_engine="InnoDB")
234
 
235