aboutsummaryrefslogtreecommitdiff
path: root/examples/tutorial02/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tutorial02/main.rs')
-rw-r--r--examples/tutorial02/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tutorial02/main.rs b/examples/tutorial02/main.rs
index 5d78e5b..785c8f0 100644
--- a/examples/tutorial02/main.rs
+++ b/examples/tutorial02/main.rs
@@ -45,14 +45,14 @@ mod test {
chrono::Local::now().naive_local(),
);
// save it
- q.save_mut();
+ q.save_mut(&connection);
// it's got an id now!
assert!(q.id().is_some());
// it's still got all the same fields!
assert_eq!(q.question_text(), "What's new?");
// we can change them!
q.set_question_text("What's up?");
- q.save_mut();
+ q.save_mut(&connection);
// it should be in the list now, too!!
let all_questions = question::table.load::<Question>(&connection).unwrap();