projects
/
pr0n
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Rename "tag" to "key" in exif_info table, and make a small SQL script to do
[pr0n]
/
sql
/
upgrade-v2.50.sql
1
--
2
-- Upgrades pre-v2.50 databases to 2.50 format -- not many changes, though.
3
--
4
ALTER TABLE exif_info RENAME COLUMN tag TO key;
5
CREATE INDEX exif_info_key ON exif_info ( key );
6
CLUSTER exif_info_key ON exif_info;
7