Skip to content

Commit 2d4e92c

Browse files
committed
feat(defaultColumn): allow disabling default columns
Signed-off-by: Tobias Gurtzick <[email protected]>
1 parent c3a1583 commit 2d4e92c

File tree

1 file changed

+3
-1
lines changed
  • lib/executors/versioned

1 file changed

+3
-1
lines changed

lib/executors/versioned/v2.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ const execUnit = {
2929
up: async function (context, driver, file) {
3030
const _file = file.get();
3131
const chain = new Chain(context._driver, file, driver, context.internals);
32-
chain.addChain(AddConventions);
32+
if (!_file._meta.noDefaultColumn) {
33+
chain.addChain(AddConventions);
34+
}
3335
chain.addChain(Learn);
3436
chain.addChain(StateTravel);
3537
chain.addChain(Migrate);

0 commit comments

Comments
 (0)