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

Commit 95fa0fc3 by Jan Aagaard Meier

Merge pull request #5016 from kirla3092/patch-1

[ci skip] Docs: changed order of values
2 parents 3ec4f6e7 65e66496
Showing with 1 additions and 1 deletions
...@@ -258,7 +258,7 @@ SELECT * FROM comments WHERE commentable_id = 42 AND commentable = 'image'; ...@@ -258,7 +258,7 @@ SELECT * FROM comments WHERE commentable_id = 42 AND commentable = 'image';
image.createComment({ image.createComment({
title: 'Awesome!' 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); image.addComment(comment);
UPDATE comments SET commentable_id = 42, commentable = 'image' 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!