I have a large number of .create()
calls that rely on a ForeignKey
in another table (Users
). However, there is no point in the code where I actually create users.
Is there a way for there to be a Users
entry created for each foreign key is specified on another table in SQLAlchemy?
For example:
class Rr(db.Model):
__tablename__ = 'rr'
id = db.Column(db.Integer, primary_key=True)
submitter = db.Column(db.String(50), db.ForeignKey('user.username'))
class User(db.Model):
__tablename__ = 'user'
username = db.Column(db.String, primary_key=True)
so If I call Rr(id, submitter=John)
is there a way for a John
entry to be created in the user table if it does not already exist?
I understand that I can create a wrapper around the .create()
method such that it checks the submitter
and creates one if it doesn't exist but this seems excess as there are a large number of models that want Users
to be automatically created.