sql-schema 0.6.3

Declarative SQL schema migrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::sealed::Sealed;

#[derive(Debug, Default, Clone)]
pub struct Generic;

#[derive(Debug, Default, Clone)]
pub struct PostgreSQL;

#[derive(Debug, Default, Clone)]
pub struct SQLite;

impl Sealed for Generic {}
impl Sealed for PostgreSQL {}
impl Sealed for SQLite {}