diff options
| author | lsces <lester@lsces.co.uk> | 2026-02-04 20:01:47 +0000 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-02-04 20:01:47 +0000 |
| commit | 7942cce5a37423ba02992cca9cfe7caafbff2aca (patch) | |
| tree | 8f0dda914dfe8a0113eaa76397187f1987580222 | |
| parent | 3a5b628c420f5756976769728f0c42c853a76b99 (diff) | |
| download | illuminate-firebird-7942cce5a37423ba02992cca9cfe7caafbff2aca.tar.gz illuminate-firebird-7942cce5a37423ba02992cca9cfe7caafbff2aca.tar.bz2 illuminate-firebird-7942cce5a37423ba02992cca9cfe7caafbff2aca.zip | |
Add NOT NULL after DEFAULT but still need to fix the eNum default which is after the CHECK element but needs to be before. eNum does not follow the $modifiers array sequence.
| -rwxr-xr-x | src/Schema/Grammars/FirebirdGrammar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Schema/Grammars/FirebirdGrammar.php b/src/Schema/Grammars/FirebirdGrammar.php index 2e209e6..a684fb1 100755 --- a/src/Schema/Grammars/FirebirdGrammar.php +++ b/src/Schema/Grammars/FirebirdGrammar.php @@ -13,7 +13,7 @@ class FirebirdGrammar extends Grammar * * @var array */ - protected $modifiers = ['Charset', 'Collate', 'Increment', 'Nullable', 'Default']; + protected $modifiers = ['Charset', 'Collate', 'Increment', 'Default', 'Nullable']; /** * The columns available as serials. |
