```raku schema(Account, Transaction).create; ``` Is there some syntax to apply the `:if-not-exists` flag when using this way of creating my tables?
schema(Account, Transaction).create;Is there some syntax to apply the
:if-not-existsflag when using this way of creating my tables?