Skip to content

Commit 337a78c

Browse files
committed
wip
1 parent 7e70a7c commit 337a78c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Database/Schema/Grammars/SQLiteGrammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function compileViews()
104104
public function compileColumns($table)
105105
{
106106
return sprintf(
107-
'select name, type, not "notnull" as "nullable", dflt_value as "default", pk as "primary"'
107+
'select name, type, not "notnull" as "nullable", dflt_value as "default", pk as "primary", hidden as "extra" '
108108
.'from pragma_table_xinfo(%s) order by cid asc',
109109
$this->quoteString(str_replace('.', '__', $table))
110110
);

0 commit comments

Comments
 (0)