1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-11 17:51:01 +00:00

feat: add custom user JavaScript

This commit is contained in:
milhnl 2024-10-06 01:54:11 +02:00 committed by GitHub
parent f16735fd6d
commit e07203ad46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 89 additions and 32 deletions

View file

@ -942,4 +942,9 @@ var migrations = []func(tx *sql.Tx) error{
_, err = tx.Exec(sql)
return err
},
func(tx *sql.Tx) (err error) {
sql := `ALTER TABLE users ADD COLUMN custom_js text not null default '';`
_, err = tx.Exec(sql)
return err
},
}