Skip to content

Commit

Permalink
change score type from Integer to Float
Browse files Browse the repository at this point in the history
  • Loading branch information
rolinh committed May 12, 2014
1 parent 0864f78 commit 2ab8ef2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions devmine/app/models/score.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
Column,
Integer,
ForeignKey,
String
String,
Float
)

from devmine.app.models import Base
Expand All @@ -23,7 +24,7 @@ class Score(Base):
fname = Column(String,
ForeignKey('features.name'),
nullable=False)
score = Column(Integer)
score = Column(Float)

def __init__(self):
pass

0 comments on commit 2ab8ef2

Please sign in to comment.