Compare commits

..

No commits in common. "079a3fd11000712236514305df6ae50f6fefcd97" and "35ceb9724124f0037f1af85d2ced97d231c82508" have entirely different histories.

26 changed files with 26 additions and 0 deletions

View File

@ -14,5 +14,6 @@ class Field {
public mixed $default = null,
public bool $readonly = false,
public null|int $decimal = null,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Bigint extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Bit extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Blob extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -13,5 +13,6 @@ class CreatedAt extends \Ulmus\Attribute\Property\Field {
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -11,5 +11,6 @@ class Date extends \Ulmus\Attribute\Property\Field {
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -11,5 +11,6 @@ class Datetime extends \Ulmus\Attribute\Property\Field {
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Decimal extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Float extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -26,6 +26,7 @@ class ForeignKey extends PrimaryKey {
public null|string $relation = null,
public ConstrainActionEnum $onDelete = ConstrainActionEnum::NoAction,
public ConstrainActionEnum $onUpdate = ConstrainActionEnum::NoAction,
public string $description = "",
) {
#$this->references = Attribute::handleArrayField($this->references, false);
}

View File

@ -17,5 +17,6 @@ class Id extends \Ulmus\Attribute\Property\Field {
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Longblob extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Longtext extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Mediumblob extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Mediumint extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Mediumtext extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Numeric extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -16,5 +16,6 @@ class PrimaryKey extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Smallint extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Text extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -12,5 +12,6 @@ class Time extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -12,5 +12,6 @@ class Timestamp extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Blob extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Tinyint extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -14,5 +14,6 @@ class Tinytext extends \Ulmus\Attribute\Property\Field
public bool $nullable = false,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}

View File

@ -15,5 +15,6 @@ class UpdatedAt extends \Ulmus\Attribute\Property\Field
public bool $nullable = true,
public mixed $default = null,
public bool $readonly = false,
public string $description = "",
) {}
}