File: update-1.3.sql

package info (click to toggle)
bookmarker 1.6-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 580 kB
  • ctags: 260
  • sloc: php: 3,063; sql: 97; sh: 68; perl: 51; makefile: 35; awk: 2; sed: 1
file content (20 lines) | stat: -rw-r--r-- 709 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# update-1.3.sql
#
# updates 1.3 bookmarker password to default password
#
# run this file against a current bookmarker installation
# using something like:
#   mysql bookmarks <update-1.3.sql
# where bookmarks is the name of the local bookmarker db.
#

#
# change the username value below ('bk') to be the username
# of your administrator user. this will set the password for
# that user to 'bk'. this will allow you to login to bookmarker
# version 1.3 under this username with password 'bk' so that
# you can change the passwords for all users. bookmarker version
# 1.3 uses md5 encryption for password storage.
#

update auth_user set password = '7e7ec59d1f4b21021577ff562dc3d48b ' where username = 'bk';