Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Reviews Migration in the database #18

Open
kelfink opened this issue Jun 8, 2016 · 0 comments
Open

Create Reviews Migration in the database #18

kelfink opened this issue Jun 8, 2016 · 0 comments
Assignees

Comments

@kelfink
Copy link
Member

kelfink commented Jun 8, 2016

create table reviews
(
id int PRIMARY KEY,
location_id int NOT NULL,
service_id int,
rating int ,
body VARCHAR(255),
created_at TIMESTAMP NOT NULL
) ;

create table ratings -- should be added to location
(
location_id int PRIMARY KEY,
rating int,
needs_updating INT DEFAULT 0,
num_ratings int NOT NULL DEFAULT 1
) ;

@kelfink kelfink self-assigned this Jun 8, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant