Skip to content

Commit 0abe1c0

Browse files
committed
Update examples
1 parent 78af75c commit 0abe1c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/app/Commands/BasicExampleCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ protected function createTables()
167167
->primaryKey('series_id')
168168
);
169169

170-
});
170+
}, true);
171171

172172
$this->print('Table `series` has been created.');
173173

@@ -184,7 +184,7 @@ protected function createTables()
184184
->primaryKey(['series_id', 'season_id'])
185185
);
186186

187-
});
187+
}, true);
188188

189189
$this->print('Table `seasons` has been created.');
190190

@@ -201,7 +201,7 @@ protected function createTables()
201201
->primaryKey(['series_id', 'season_id', 'episode_id'])
202202
);
203203

204-
});
204+
}, true);
205205

206206
$this->print('Table `episodes` has been created.');
207207
}
@@ -215,7 +215,7 @@ protected function describeTable($table)
215215

216216
return $session->describeTable($table);
217217

218-
});
218+
}, true);
219219

220220
$columns = [];
221221

0 commit comments

Comments
 (0)