Unverified Commit a49e9391 authored by Kevin Lyda's avatar Kevin Lyda
Browse files

Fix column name

parent 10d49bf6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,4 +7,4 @@
         VALUES ('GENERAL', 'Default general bulletin folder.', 1, 1);

-- name: SeedGeneralOwner :exec
  INSERT INTO owners (folder, owner) VALUES ('GENERAL', 'SYSTEM');
  INSERT INTO owners (folder, login) VALUES ('GENERAL', 'SYSTEM');
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ func (q *Queries) SeedFolderGeneral(ctx context.Context) error {
}

const seedGeneralOwner = `-- name: SeedGeneralOwner :exec
  INSERT INTO owners (folder, owner) VALUES ('GENERAL', 'SYSTEM')
  INSERT INTO owners (folder, login) VALUES ('GENERAL', 'SYSTEM')
`

func (q *Queries) SeedGeneralOwner(ctx context.Context) error {