Skip to content

Commit 38b9a91

Browse files
committed
Remove not needed models
1 parent 140e12c commit 38b9a91

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

testproject/app/models.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
from cassandra.cqlengine import columns
22
from cassandra.cqlengine import models
3-
from cassandra.cqlengine.columns import UserDefinedType
4-
from cassandra.cqlengine.usertype import UserType
53

64

75
class ExampleModel(models.Model):
@@ -16,13 +14,3 @@ class ExampleModel2(models.Model):
1614

1715
class TestProjectModel(models.Model):
1816
id = columns.UUID(primary_key=True)
19-
20-
21-
class SimpleUDT(UserType):
22-
name = columns.Text()
23-
value = columns.Integer()
24-
25-
26-
class ExampleModelWithUDT(models.Model):
27-
id = columns.UUID(primary_key=True)
28-
sth = UserDefinedType(SimpleUDT)

0 commit comments

Comments
 (0)