File: downgrade_3.2.5b.sql

package info (click to toggle)
sitebar 3.3.8-7etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 4,168 kB
  • ctags: 3,234
  • sloc: php: 52,374; sql: 570; sh: 331; makefile: 35
file content (17 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ALTER TABLE `sitebar_favicon`
    CHANGE `ico` `ico` BLOB NOT NULL ,
    CHANGE `changed` `t_changed` timestamp(14) NOT NULL;

ALTER TABLE `sitebar_link`
    CHANGE `changed` `t_changed` timestamp(14) NOT NULL,
    CHANGE `tested` `t_tested` timestamp(14) NOT NULL,
    DROP `validate`;

ALTER TABLE `sitebar_visit`
    CHANGE `visit` `t_visit` timestamp(14) NOT NULL;

ALTER TABLE `sitebar_session`
    CHANGE `created` `created` datetime NOT NULL;

UPDATE `sitebar_config`
    SET `release` = '3.2';