Fixes bug with fit copy.

`copy.deepcopy` was not copying the booster property of the fit for whatever reason - I blame my poor understanding of copy.
This commit is contained in:
blitzmann
2014-02-22 00:52:29 -05:00
parent 50ce4d37aa
commit f2c1002d58

View File

@@ -37,7 +37,7 @@ fits_table = Table("fits", saveddata_meta,
Column("timestamp", Integer, nullable = False),
Column("characterID", ForeignKey("characters.ID"), nullable = True),
Column("damagePatternID", ForeignKey("damagePatterns.ID"), nullable=True),
Column("booster", Boolean, nullable = False, index = True))
Column("booster", Boolean, nullable = False, index = True, default = 0))
projectedFits_table = Table("projectedFits", saveddata_meta,
Column("sourceID", ForeignKey("fits.ID"), primary_key = True),