Need to duplicate migration_defaults if multiple resources uses the same table
I have a resource called
it has this
I have a migration file for that specific resource with correctly created the
I also have another resource that uses the same table called
it has this
If I try to create a migration file for that resource, it will alter the user table changing the
Can I stop it from doing it without having to duplicate that code in both resources?
Userit has this
postgres configuration:I have a migration file for that specific resource with correctly created the
roles field with the default value:I also have another resource that uses the same table called
Bidder.it has this
postgres configuration:If I try to create a migration file for that resource, it will alter the user table changing the
role default to nil.Can I stop it from doing it without having to duplicate that code in both resources?
