Changes between Initial Version and Version 1 of Ticket #9912
- Timestamp:
- Mar 20, 2012, 5:21:38 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9912 – Description
initial v1 1 Wenn tryin 1 When trying: 2 {{{ 3 trac-admin /path/to/env upgrade 4 }}} 2 5 3 t rac-admin /path/to/env upgrade6 the same "Error" occurs like in ticket http://trac-hacks.org/ticket/9729 4 7 5 the same "Error" occours like in ticket http://trac-hacks.org/ticket/9729 6 8 {{{ 7 9 SimpleMultiProject database schema version: 1 initialized. 8 10 SimpleMultiProject database schema is out of date: False 9 11 Database is up to date, no upgrade necessary. 12 }}} 10 13 11 Tryin to add the required tables with the attached file (http://trac-hacks.org/attachment/ticket/9729/load_db.sql) failes cause MySQL uses other synthax.14 Trying to add the required tables with the attached file (http://trac-hacks.org/attachment/ticket/9729/load_db.sql) fails cause MySQL uses other syntax. 12 15 13 When nadding tables manually using:16 When adding tables manually using: 14 17 18 {{{ 15 19 CREATE TABLE `smp_project` ( 16 20 `id_project` INT(64) NOT NULL, … … 30 34 COLLATE='utf8_bin' 31 35 ENGINE=MyISAM; 36 }}} 32 37 33 38 the option "projects" is visible in Admin section of trac, but when tryin to add the second project a error occurs, so using the following code via phpMyAdmin 34 39 40 {{{ 35 41 ALTER TABLE `smp_project` 36 42 CHANGE COLUMN `id_project` `id_project` INT(64) NOT NULL AUTO_INCREMENT FIRST; 43 }}} 37 44 38 45 now adding projects works fine BUT -> after logout the "admin" button is still visible to anonymous and shows the project settings.