mirror of
https://github.com/solero/houdini.git
synced 2025-10-18 21:38:13 +00:00
Removal of unnecessary columns that aren't utilized in the warning table
This commit is contained in:
@@ -18,10 +18,8 @@ class Warning(db.Model):
|
||||
|
||||
penguin_id = db.Column(db.ForeignKey('penguin.id', ondelete='CASCADE', onupdate='CASCADE'), primary_key=True,
|
||||
nullable=False)
|
||||
issued = db.Column(db.DateTime, primary_key=True, nullable=False)
|
||||
expires = db.Column(db.DateTime, primary_key=True, nullable=False)
|
||||
type = db.Column(db.SmallInteger, nullable=False)
|
||||
comment = db.Column(db.Text, nullable=False)
|
||||
|
||||
|
||||
|
||||
class Report(db.Model):
|
||||
|
Reference in New Issue
Block a user