From 3a19463aa1c651cb2d27f763b07caa2b75ee03ad Mon Sep 17 00:00:00 2001 From: Slaven Rezic Date: Thu, 23 Nov 2023 15:05:28 +0100 Subject: [PATCH] untabify lib/SQL/Translator/Parser/SQLite.pm --- lib/SQL/Translator/Parser/SQLite.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SQL/Translator/Parser/SQLite.pm b/lib/SQL/Translator/Parser/SQLite.pm index 5e69e83b..fab52832 100644 --- a/lib/SQL/Translator/Parser/SQLite.pm +++ b/lib/SQL/Translator/Parser/SQLite.pm @@ -681,7 +681,7 @@ sub parse { size => $fdata->{'size'}, default_value => $fdata->{'default'}, is_auto_increment => $fdata->{'is_auto_inc'}, - ($fdata->{'is_auto_inc'}? ( extra => { auto_increment_type => 'monotonic' } ) : ()), + ($fdata->{'is_auto_inc'}? ( extra => { auto_increment_type => 'monotonic' } ) : ()), is_nullable => $fdata->{'is_nullable'}, comments => $fdata->{'comments'}, ) or die $table->error;