Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

22 řádky
421B

  1. <?php
  2. namespace Framework\Database\Migration\Field;
  3. use Framework\Database\Exception\MigrationException;
  4. class TextField extends Field
  5. {
  6. public ?string $default = null;
  7. public function nullable(): static
  8. {
  9. throw new MigrationException('Text fields cannot be nullable');
  10. }
  11. public function default(string $value): static
  12. {
  13. $this->default = $value;
  14. return $this;
  15. }
  16. }

Powered by TurnKey Linux.