選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

22 行
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.