不要怂,就是干,撸起袖子干!

Commit 65e66496 by Alrik Hausdorf

changed order of values

1 parent 3ec4f6e7
Showing with 1 additions and 1 deletions
......@@ -258,7 +258,7 @@ SELECT * FROM comments WHERE commentable_id = 42 AND commentable = 'image';
image.createComment({
title: 'Awesome!'
})
INSERT INTO comments (title, commentable_id, commentable) VALUES ('Awesome!', 'image', 42);
INSERT INTO comments (title, commentable_id, commentable) VALUES ('Awesome!', 42, 'image');
image.addComment(comment);
UPDATE comments SET commentable_id = 42, commentable = 'image'
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!