sql-gen 0.1.3

A CLI tool for generating models based on a SQL Database using SQLx
1
2
3
4
5
6
7
8
9
//Generated with SQLGEN
//https://github.com/jayy-lmao/sql-codegen

#[derive(sqlx::FromRow)]
pub struct Categories {
  pub id: i64,
  pub created_at: Option<chrono::DateTime<chrono::Utc>>,
  pub label: String,
}