It should work, in case you take care of the length of the column string in the database. So, for this case, it's better to use Text
type column which has extended size in most of the database servers.
class model_name(db.Model):
id = db.Column(db.Integer, primary_key=True)
integer_values = db.Column(db.Text)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…