realise document upload - Part 1
This commit is contained in:
@@ -17,6 +17,13 @@ class Tenant(db.Model):
|
||||
name = db.Column(db.String(80), unique=True, nullable=False)
|
||||
website = db.Column(db.String(255), nullable=True)
|
||||
|
||||
# language information
|
||||
default_language = db.Column(db.String(2), nullable=True)
|
||||
|
||||
# currency information
|
||||
default_currency = db.Column(db.String(80), nullable=True)
|
||||
|
||||
|
||||
# Licensing Information
|
||||
license_start_date = db.Column(db.Date, nullable=True)
|
||||
license_end_date = db.Column(db.Date, nullable=True)
|
||||
|
||||
Reference in New Issue
Block a user