From bb28c60ccafa5a56a6ccfb98bf46efe21a1929a5 Mon Sep 17 00:00:00 2001
From: ale <ale@incal.net>
Date: Fri, 27 Jan 2012 14:28:37 +0100
Subject: [PATCH] make the features a BLOB

---
 server/djrandom/model/mp3.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/djrandom/model/mp3.py b/server/djrandom/model/mp3.py
index 92e0ce9..13cc5fc 100644
--- a/server/djrandom/model/mp3.py
+++ b/server/djrandom/model/mp3.py
@@ -23,7 +23,7 @@ class Features(Base):
     __tablename__ = 'features'
 
     sha1 = Column(String(40), primary_key=True)
-    timbre_vector = Column(Text())
+    timbre_vector = Column(LargeBinary())
 
 
 class MP3(Base):
-- 
GitLab