Subversion Repositories SmartDukaan

Rev

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

Rev 20942 Rev 21044
Line 862... Line 862...
862
    updatedAt = Field(DateTime)
862
    updatedAt = Field(DateTime)
863
    packageDimensions = Field(String(20))
863
    packageDimensions = Field(String(20))
864
    using_options(shortnames=True)
864
    using_options(shortnames=True)
865
    using_table_options(mysql_engine="InnoDB")
865
    using_table_options(mysql_engine="InnoDB")
866
    
866
    
-
 
867
class PMSA(Entity):
-
 
868
    id = Field(Integer, primary_key=True, autoincrement=True)
-
 
869
    name = Field(String(256))
-
 
870
    phone = Field(String(10))
-
 
871
    emailId = Field(String(50))
-
 
872
    address = Field(String(256))
-
 
873
    pin = Field(String(6))
-
 
874
    code = Field(String(12))
-
 
875
    using_options(shortnames=True)
-
 
876
    using_table_options(mysql_engine="InnoDB")
-
 
877
 
-
 
878
class PMSA_Agents(Entity):
-
 
879
    userId = Field(Integer, primary_key=True, autoincrement=False)
-
 
880
    pmsa_id = Field(Integer)
-
 
881
    using_options(shortnames=True)
-
 
882
    using_table_options(mysql_engine="InnoDB")
-
 
883
    
867
884