Subversion Repositories SmartDukaan

Rev

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

Rev 15352 Rev 15359
Line 175... Line 175...
175
    created = Field(DateTime,default=func.now())
175
    created = Field(DateTime,default=func.now())
176
    using_options(shortnames=True)
176
    using_options(shortnames=True)
177
    using_table_options(mysql_engine="InnoDB")
177
    using_table_options(mysql_engine="InnoDB")
178
    
178
    
179
class RetryConfig(Entity):
179
class RetryConfig(Entity):
180
    call_type = Field(Enum('fresh', 'followup'))
180
    call_type = Field(Enum('fresh', 'followup', 'onboarding'))
181
    disposition_type = Field(Enum('ringing_no_answer', 'not_reachable'))
181
    disposition_type = Field(Enum('ringing_no_answer', 'not_reachable'))
182
    retry_count = Field(Integer(unsigned=True))
182
    retry_count = Field(Integer(unsigned=True))
183
    minutes_ahead = Field(Integer(unsigned=True))
183
    minutes_ahead = Field(Integer(unsigned=True))
184
    using_options(shortnames=True)
184
    using_options(shortnames=True)
185
    using_table_options(mysql_engine="InnoDB")
185
    using_table_options(mysql_engine="InnoDB")