mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
Added integration for Readwise Reader
This commit is contained in:
parent
3aad650622
commit
3bac768cda
26 changed files with 178 additions and 3 deletions
|
@ -716,4 +716,12 @@ var migrations = []func(tx *sql.Tx) error{
|
|||
_, err = tx.Exec(sql)
|
||||
return err
|
||||
},
|
||||
func(tx *sql.Tx) (err error) {
|
||||
sql := `
|
||||
ALTER TABLE integrations ADD COLUMN readwise_enabled bool default 'f';
|
||||
ALTER TABLE integrations ADD COLUMN readwise_api_key text default '';
|
||||
`
|
||||
_, err = tx.Exec(sql)
|
||||
return err
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue