Changeset 15 for Common/ModelDesc.php


Ignore:
Timestamp:
Dec 27, 2022, 3:11:01 PM (2 years ago)
Author:
chronos
Message:
  • Modified: Updates and fixes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Common/ModelDesc.php

    r14 r15  
    1616    $this->PrimaryKey = 'Id';
    1717    $this->Memory = false;
     18    $this->DefaultValuesMethod = null;
    1819  }
    1920
     
    179180{
    180181  public ?string $Default;
     182  public int $MaxLength;
    181183
    182184  function __construct(string $Name)
     
    185187    $this->HasDefault = false;
    186188    $this->Default = null;
     189    $this->MaxLength = 255;
    187190  }
    188191
Note: See TracChangeset for help on using the changeset viewer.