scufflecloud_video_api_db_types/schema.rs
1#![cfg_attr(coverage_nightly, coverage(off))]
2// @generated automatically by Diesel CLI.
3
4diesel::table! {
5 /// Representation of the `streams` table.
6 ///
7 /// (Automatically generated by Diesel.)
8 streams (id) {
9 /// The `id` column of the `streams` table.
10 ///
11 /// Its SQL type is `Uuid`.
12 ///
13 /// (Automatically generated by Diesel.)
14 id -> Uuid,
15 /// The `project_id` column of the `streams` table.
16 ///
17 /// Its SQL type is `Uuid`.
18 ///
19 /// (Automatically generated by Diesel.)
20 project_id -> Uuid,
21 /// The `name` column of the `streams` table.
22 ///
23 /// Its SQL type is `Varchar`.
24 ///
25 /// (Automatically generated by Diesel.)
26 #[max_length = 255]
27 name -> Varchar,
28 }
29}