You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Migrating modules requires listing every necessary module by name, for example, if one wants the feature-requests module and the auth module, one must initialize via:
ct_feature_requests requires the ct_auth module to exist first. So there should be a better way to encode this dependency, and remove the strings.
Those strings also have to be exactly those, as the initialize method is going to look in resources for s"db/$schemaName/migration" This is a string then that the module owns and should not need to be specified by the user.
The text was updated successfully, but these errors were encountered:
Migrating modules requires listing every necessary module by name, for example, if one wants the feature-requests module and the auth module, one must initialize via:
ct_feature_requests
requires thect_auth
module to exist first. So there should be a better way to encode this dependency, and remove the strings.Those strings also have to be exactly those, as the initialize method is going to look in
resources
fors"db/$schemaName/migration"
This is a string then that the module owns and should not need to be specified by the user.The text was updated successfully, but these errors were encountered: