Skip to content

Commit b7ffed5

Browse files
committed
Add migration to create ratings
[tim/asif]
1 parent 4f45028 commit b7ffed5

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE ratings;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CREATE TABLE ratings(
2+
id SERIAL,
3+
rating_sets_id INT,
4+
users_id INT,
5+
rating INT
6+
);

0 commit comments

Comments
 (0)