Skip to content

Instantly share code, notes, and snippets.

@camsom
Last active August 29, 2015 14:04
Show Gist options
  • Save camsom/86416ec5aba1b80b16a1 to your computer and use it in GitHub Desktop.
Save camsom/86416ec5aba1b80b16a1 to your computer and use it in GitHub Desktop.
CREATE_TABLE_STATEMENTS = {
'achievement_achievement':
'''CREATE TABLE achievement_achievement
(
id int,
title varchar(255),
description text
);
''',
'task_task':
'''CREATE TABLE task_task
(
id int,
name varchar(255),
description text,
effort int,
deadline date,
points int
);
'''
}
@foresmac
Copy link

foresmac commented Aug 4, 2014

I would put in extra line between each dict kv pair to make it extra clear which key goes with which SQL statement.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment