Skip to content

Commit

Permalink
Remove the now defunct Google Reader
Browse files Browse the repository at this point in the history
It was killed in 2013.
  • Loading branch information
jvoisin committed Nov 12, 2024
1 parent c3016a4 commit d735595
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 1,974 deletions.
9 changes: 9 additions & 0 deletions internal/database/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -960,4 +960,13 @@ var migrations = []func(tx *sql.Tx) error{
_, err = tx.Exec(sql)
return err
},
func(tx *sql.Tx) (err error) {
sql := `
ALTER TABLE integrations DROP COLUMN googlereader_enabled;
ALTER TABLE integrations DROP COLUMN googlereader_username;
ALTER TABLE integrations DROP COLUMN googlereader_password;
`
_, err = tx.Exec(sql)
return err
},
}
Loading

0 comments on commit d735595

Please sign in to comment.