getTable('deck_cards'); if (!$table->hasColumn('due_done')) { $table->addColumn('due_done', 'boolean', [ 'notnull' => false, 'default' => false ]); } return $schema; } /** * @param IOutput $output * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options */ public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void { } }