﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
14536	Incorrect syntax about using OPTIONS for changing the database engine	Denilson Figueiredo de Sá	nobody	"Right here: http://docs.djangoproject.com/en/dev/ref/databases/#creating-your-tables

We have the following code:

{{{
OPTIONS = {
   ""init_command"": ""SET storage_engine=INNODB"",
}
}}}

Which is not using the dict syntax. The correct would be:

{{{
'OPTIONS': {
   'init_command': 'SET storage_engine=INNODB',
},
}}}

(as bonus, to avoid confusion, replaced double-quotes with single-quotes, as they are the type of quotation used by default in settings.py)

A little off-topic, but it says we should remove that line after we create the tables. Why? A little explanation would help. Why can't we just leave it there? (so it will work whenever we need to re-create the tables)"		closed	Documentation	dev		fixed			Accepted	0	0	0	0	0	0
