Changeset 15 for Common/ModelDesc.php
- Timestamp:
- Dec 27, 2022, 3:11:01 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/ModelDesc.php
r14 r15 16 16 $this->PrimaryKey = 'Id'; 17 17 $this->Memory = false; 18 $this->DefaultValuesMethod = null; 18 19 } 19 20 … … 179 180 { 180 181 public ?string $Default; 182 public int $MaxLength; 181 183 182 184 function __construct(string $Name) … … 185 187 $this->HasDefault = false; 186 188 $this->Default = null; 189 $this->MaxLength = 255; 187 190 } 188 191
Note:
See TracChangeset
for help on using the changeset viewer.