Great Migration: spline.plugins => splinext
[zzz-spline-gts.git] / spline / plugins / gts / model / __init__.py
diff --git a/spline/plugins/gts/model/__init__.py b/spline/plugins/gts/model/__init__.py
deleted file mode 100644 (file)
index 3d73b54..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-from sqlalchemy import Column, ForeignKey
-from sqlalchemy.orm import relation
-from sqlalchemy.types import Binary, Integer, Unicode
-
-from spline.model.meta import TableBase
-
-class GTSPokemon(TableBase):
-    __tablename__ = 'gts_pokemon'
-    id = Column(Integer, primary_key=True, autoincrement=True)
-    pid = Column(Integer)
-    pokemon_blob = Column(Binary(292), nullable=False)