1diesel::table! {
4 items (id) {
5 id -> Integer,
6 calendar -> Integer,
7 year -> Nullable<Integer>,
8 season -> Nullable<Integer>,
9 month -> Nullable<Integer>,
10 day -> Integer,
11 kind -> Integer,
12 fixed_date -> Bool,
13 all_day -> Bool,
14 title -> Nullable<Text>,
15 note -> Nullable<Text>,
16 datetime -> Nullable<Text>,
17 duration -> Nullable<Integer>,
18 status -> Nullable<Integer>,
19 order_in_week -> Nullable<Text>,
20 order_in_resolution -> Nullable<Text>,
21 sync -> Nullable<Integer>,
22 uuid -> Nullable<Text>,
23 }
24}