Subversion Repositories SmartDukaan

Rev

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

Rev 16595 Rev 16597
Line 468... Line 468...
468
    
468
    
469
class appmasters(Entity):
469
class appmasters(Entity):
470
    id = Field(Integer, primary_key=True, autoincrement=True)
470
    id = Field(Integer, primary_key=True, autoincrement=True)
471
    app_name = Field(String(256))
471
    app_name = Field(String(256))
472
    package_name = Field(String(256))
472
    package_name = Field(String(256))
473
    os_name = Field(Enum('ANDROID', 'IOS', 'WINDOWS'), default='ANDROID')
473
    os_name = Field(Enum('ANDROID', 'IOS', 'WINDOWS'))
474
    shortDescription = Field(Text)
474
    shortDescription = Field(Text)
475
    longDescription = Field(Text)
475
    longDescription = Field(Text)
476
    customerOneLiner = Field(String(512))
476
    customerOneLiner = Field(String(512))
477
    retailerOneLiner = Field(String(512))
477
    retailerOneLiner = Field(String(512))
478
    using_options(shortnames=True)
478
    using_options(shortnames=True)