1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
table! { logs (rowid) { rowid -> Integer, source -> Text, body -> Text, } } table! { posts (id) { id -> Text, body -> Text, } } allow_tables_to_appear_in_same_query!(logs, posts,);
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
table! { logs (rowid) { rowid -> Integer, source -> Text, body -> Text, } } table! { posts (id) { id -> Text, body -> Text, } } allow_tables_to_appear_in_same_query!(logs, posts,);