Exemplo n.º 1
0
 class TestIndex:
     integer = Int(primary_key=True)
     other = Str(index=True)
Exemplo n.º 2
0
 class TestUnique:
     integer = Int(primary_key=True)
     other = Str(unique=True)
Exemplo n.º 3
0
    class TestIndex:
        __db_schema__ = 'test_db_schema'

        integer = Int(primary_key=True)
        other = Str(index=True)
Exemplo n.º 4
0
 class Test:
     integer = Int(primary_key=True)
     other = Str()
Exemplo n.º 5
0
    class TestUnique:
        __db_schema__ = 'test_db_schema'

        integer = Int(primary_key=True)
        other = Str(unique=True)