summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2026-02-04 20:01:47 +0000
committerlsces <lester@lsces.co.uk>2026-02-04 20:01:47 +0000
commit7942cce5a37423ba02992cca9cfe7caafbff2aca (patch)
tree8f0dda914dfe8a0113eaa76397187f1987580222 /src
parent3a5b628c420f5756976769728f0c42c853a76b99 (diff)
downloadilluminate-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.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/Schema/Grammars/FirebirdGrammar.php2
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.