Subversion Repositories SmartDukaan

Rev

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

Rev 21044 Rev 21050
Line 876... Line 876...
876
    using_table_options(mysql_engine="InnoDB")
876
    using_table_options(mysql_engine="InnoDB")
877
 
877
 
878
class PMSA_Agents(Entity):
878
class PMSA_Agents(Entity):
879
    userId = Field(Integer, primary_key=True, autoincrement=False)
879
    userId = Field(Integer, primary_key=True, autoincrement=False)
880
    pmsa_id = Field(Integer)
880
    pmsa_id = Field(Integer)
-
 
881
    createdAt = Field(DateTime,default = datetime.datetime.now)
881
    using_options(shortnames=True)
882
    using_options(shortnames=True)
882
    using_table_options(mysql_engine="InnoDB")
883
    using_table_options(mysql_engine="InnoDB")
883
    
884
    
884
885