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
The view was created as follow: CREATE OR REPLACE VIEW myschema.jets_pilots AS SELECT jets.id AS jet_id, jets.name as name, pilots.name AS pilot_name FROM myschema.jets AS jets LEFT JOIN myschema.pilots AS pilots ON pilots.id=jets.pilot_id;
Tables pilots and jets was created within myschema.
Hey, I've noticed that the model generator added unused "database/sql" import for SQL VIEW models.
version of SQLBoiler: 4.14.2
database version: Postgresql 10
The text was updated successfully, but these errors were encountered: