Changes between Initial Version and Version 4 of Ticket #8200
- Timestamp:
- Aug 10, 2008, 11:29:42 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8200
- Property Resolution → worksforme
- Property Status new → closed
-
Ticket #8200 – Description
initial v4 1 1 I was following along with the The flatpages app docs ( http://www.djangoproject.com/documentation/flatpages ) and when I got to the manage.py syncdb step I got the following error. 2 2 3 {{{ 3 4 # manage.py syncdb 4 5 Creating table django_flatpage … … 23 24 raise errorclass, errorvalue 24 25 _mysql_exceptions.OperationalError: (1005, "Can't create table './[stuff deleted]/#sql-48d_41.frm' (errno: 150)") 25 26 }}} 26 27 After some investigation I discovered this error occurs because I use... 27 28 {{{ 28 29 DATABASE_OPTIONS = { 'init_command' : 'SET storage_engine = INNODB' } 29 30 }}} 30 31 ...in my project settings file, I'm using MySQL for my database. I need to use INNODB files because I am using the binary log feature of MySQL for data recovery in case of disaster. I am using rev 7568 of the development trunk. 31 32