first iteration with mobile schema/model
This commit is contained in:
parent
81618a9e1b
commit
024a9a7d24
|
@ -508,9 +508,10 @@ class Mobile(Device):
|
||||||
meid.comment = """The Mobile Equipment Identifier as a hexadecimal
|
meid.comment = """The Mobile Equipment Identifier as a hexadecimal
|
||||||
string.
|
string.
|
||||||
"""
|
"""
|
||||||
ram_size = db.Column(db.Integer, check_range(1, ))
|
ram_size = db.Column(db.Integer, check_range('ram_size', min=128, max=36000))
|
||||||
ram_size.comment = """The total of RAM of the device in MB."""
|
ram_size.comment = """The total of RAM of the device in MB."""
|
||||||
data_storage_size = db.Column(db.Integer)
|
data_storage_size = db.Column(db.Integer, check_range('data_storage_size', 0, 10 ** 8))
|
||||||
|
data_storage_size.comment = """The total of data storage of the device in MB"""
|
||||||
|
|
||||||
@validates('imei')
|
@validates('imei')
|
||||||
def validate_imei(self, _, value: int):
|
def validate_imei(self, _, value: int):
|
||||||
|
|
Reference in New Issue