230,233c230,233
<     CREATE TABLE polls_polls (
<         id serial NOT NULL PRIMARY KEY,
<         question varchar(200) NOT NULL,
<         pub_date timestamp with time zone NOT NULL
---
>     CREATE TABLE "polls_polls" (
> 	"id" serial NOT NULL PRIMARY KEY,
> 	"question" varchar(200) NOT NULL,
> 	"pub_date" timestamp with time zone NOT NULL
235,239c235,239
<     CREATE TABLE polls_choices (
<         id serial NOT NULL PRIMARY KEY,
<         poll_id integer NOT NULL REFERENCES polls_polls (id),
<         choice varchar(200) NOT NULL,
<         votes integer NOT NULL
---
>     CREATE TABLE "polls_choices" (
> 	"id" serial NOT NULL PRIMARY KEY,
> 	"poll_id" integer NOT NULL REFERENCES "polls_polls" ("id"),
> 	"choice" varchar(200) NOT NULL,
> 	"votes" integer NOT NULL
