ionyse / ionyweb

An API drived, javascript modification UI CMS based on django framework
Other
11 stars 2 forks source link

Flush database not compatible with postgresql #12

Open sylvainbeo opened 11 years ago

sylvainbeo commented 11 years ago

flush_website method (ionyweb / website / init.py) define :

query = 'CREATE DATABASE %s CHARACTER SET utf8 COLLATE utf8_general_ci;\n' % connection.settings_dict['NAME']

which is specific to Mysql.

This should be removed or adapted to have full compatibility with other databases.