From 7942cce5a37423ba02992cca9cfe7caafbff2aca Mon Sep 17 00:00:00 2001 From: lsces Date: Wed, 4 Feb 2026 20:01:47 +0000 Subject: 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. --- src/Schema/Grammars/FirebirdGrammar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.3