sea_schema/postgres/writer/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod column;
mod constraints;
mod enumeration;
mod schema;
mod table;
mod types;

use super::def::Schema;
use sea_query::TableCreateStatement;

impl Schema {
    pub fn write(&self) -> Vec<TableCreateStatement> {
        self.tables.iter().map(|table| table.write()).collect()
    }
}