lift-migration 0.1.7

Migration runtime and schema builder for lift.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
use crate::{
    BlueprintExecutor, MigrationError,
    schema::render::{
        default_index_name, infer_referenced_table, render_column, render_constraint,
        render_foreign_key,
    },
};

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum SchemaDialect {
    Sqlite,
    Postgres,
    MariaDb,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ColumnType {
    Integer,
    BigInt,
    Bool,
    Char(u32),
    Varchar(u32),
    Text,
    Date,
    Time,
    DateTime,
    Timestamp,
    Decimal(u32, u32),
    Float,
    Double,
    Json,
    Uuid,
    Custom(String),
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) enum TableAlterOperation {
    DropColumn(String),
    AddColumn(ColumnDef),
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) enum ConstraintDef {
    Primary {
        columns: Vec<String>,
    },
    Unique {
        name: Option<String>,
        columns: Vec<String>,
    },
    Check {
        name: Option<String>,
        expression: String,
    },
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct ColumnDef {
    pub(crate) name: String,
    pub(crate) ty: ColumnType,
    pub(crate) nullable: bool,
    pub(crate) primary_key: bool,
    pub(crate) auto_increment: bool,
    pub(crate) unique: bool,
    pub(crate) default_raw: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct DefaultValue {
    pub(crate) sql: String,
}

impl DefaultValue {
    pub fn raw(sql: impl Into<String>) -> Self {
        Self { sql: sql.into() }
    }
}

pub fn current_timestamp() -> DefaultValue {
    DefaultValue::raw("current_timestamp")
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct ForeignKeyDef {
    pub(crate) column: String,
    pub(crate) references_table: String,
    pub(crate) references_column: String,
    pub(crate) on_delete: Option<ForeignKeyAction>,
    pub(crate) on_update: Option<ForeignKeyAction>,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ForeignKeyAction {
    Cascade,
    Restrict,
    SetNull,
    NoAction,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct IndexBlueprint {
    name: String,
    table: String,
    columns: Vec<String>,
    unique: bool,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TableBlueprint {
    name: String,
    columns: Vec<ColumnDef>,
    foreign_keys: Vec<ForeignKeyDef>,
    constraints: Vec<ConstraintDef>,
    indexes: Vec<IndexBlueprint>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct AlterTableBlueprint {
    name: String,
    operations: Vec<TableAlterOperation>,
}

pub trait IntoSchemaColumns {
    fn into_schema_columns(self) -> Vec<String>;
}

impl IntoSchemaColumns for &str {
    fn into_schema_columns(self) -> Vec<String> {
        vec![self.to_owned()]
    }
}

impl IntoSchemaColumns for String {
    fn into_schema_columns(self) -> Vec<String> {
        vec![self]
    }
}

impl<const N: usize> IntoSchemaColumns for [&str; N] {
    fn into_schema_columns(self) -> Vec<String> {
        self.into_iter().map(str::to_owned).collect()
    }
}

impl<const N: usize> IntoSchemaColumns for [String; N] {
    fn into_schema_columns(self) -> Vec<String> {
        self.into_iter().collect()
    }
}

impl IntoSchemaColumns for Vec<&str> {
    fn into_schema_columns(self) -> Vec<String> {
        self.into_iter().map(str::to_owned).collect()
    }
}

impl IntoSchemaColumns for Vec<String> {
    fn into_schema_columns(self) -> Vec<String> {
        self
    }
}

macro_rules! impl_into_schema_columns_tuple {
    ($(($type_name:ident, $value_name:ident)),+ $(,)?) => {
        impl<$($type_name),+> IntoSchemaColumns for ($($type_name,)+)
        where
            $($type_name: AsRef<str>,)+
        {
            fn into_schema_columns(self) -> Vec<String> {
                let ($($value_name,)+) = self;
                vec![$($value_name.as_ref().to_owned(),)+]
            }
        }
    };
}

impl_into_schema_columns_tuple!((A, a), (B, b));
impl_into_schema_columns_tuple!((A, a), (B, b), (C, c));
impl_into_schema_columns_tuple!((A, a), (B, b), (C, c), (D, d));

impl TableBlueprint {
    pub fn new(name: impl Into<String>) -> Self {
        Self {
            name: name.into(),
            columns: Vec::new(),
            foreign_keys: Vec::new(),
            constraints: Vec::new(),
            indexes: Vec::new(),
        }
    }

    pub fn id(&mut self) {
        self.big_increments("id");
    }

    pub fn increments(&mut self, name: &str) {
        self.columns.push(ColumnDef {
            name: name.to_owned(),
            ty: ColumnType::Integer,
            nullable: false,
            primary_key: true,
            auto_increment: true,
            unique: false,
            default_raw: None,
        });
    }

    pub fn big_increments(&mut self, name: &str) {
        self.columns.push(ColumnDef {
            name: name.to_owned(),
            ty: ColumnType::BigInt,
            nullable: false,
            primary_key: true,
            auto_increment: true,
            unique: false,
            default_raw: None,
        });
    }

    pub fn string(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Varchar(255))
    }

    pub fn char(&mut self, name: &str, len: u32) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Char(len))
    }

    pub fn varchar(&mut self, name: &str, len: u32) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Varchar(len))
    }

    pub fn text(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Text)
    }

    pub fn integer(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Integer)
    }

    pub fn bigint(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::BigInt)
    }

    pub fn boolean(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Bool)
    }

    pub fn date(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Date)
    }

    pub fn time(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Time)
    }

    pub fn datetime(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::DateTime)
    }

    pub fn timestamp(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Timestamp)
    }

    pub fn decimal(&mut self, name: &str, precision: u32, scale: u32) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Decimal(precision, scale))
    }

    pub fn float(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Float)
    }

    pub fn double(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Double)
    }

    pub fn json(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Json)
    }

    pub fn uuid(&mut self, name: &str) -> ColumnBuilder<'_> {
        self.push_column(name, ColumnType::Uuid)
    }

    pub(crate) fn custom(&mut self, name: &str, ty: ColumnType) -> ColumnBuilder<'_> {
        self.push_column(name, ty)
    }

    pub fn timestamps(&mut self) {
        self.timestamp("created_at").default(current_timestamp());
        self.timestamp("updated_at").default(current_timestamp());
    }

    pub fn remember_token(&mut self) -> ColumnBuilder<'_> {
        self.push_column("remember_token", ColumnType::Varchar(100))
            .nullable()
    }

    pub fn foreign_id(&mut self, column: &str) -> ForeignKeyBuilder<'_> {
        self.foreign(column, ColumnType::BigInt)
    }

    pub fn foreign(&mut self, column: &str, ty: ColumnType) -> ForeignKeyBuilder<'_> {
        self.columns.push(ColumnDef {
            name: column.to_owned(),
            ty,
            nullable: false,
            primary_key: false,
            auto_increment: false,
            unique: false,
            default_raw: None,
        });
        let index = self.columns.len() - 1;
        ForeignKeyBuilder {
            table: self,
            index,
            foreign_key: None,
        }
    }

    pub fn unique<I>(&mut self, columns: I)
    where
        I: IntoSchemaColumns,
    {
        self.constraints.push(ConstraintDef::Unique {
            name: None,
            columns: columns.into_schema_columns(),
        });
    }

    pub fn primary<I>(&mut self, columns: I)
    where
        I: IntoSchemaColumns,
    {
        self.constraints.push(ConstraintDef::Primary {
            columns: columns.into_schema_columns(),
        });
    }

    pub fn unique_named<I>(&mut self, name: &str, columns: I)
    where
        I: IntoSchemaColumns,
    {
        self.constraints.push(ConstraintDef::Unique {
            name: Some(name.to_owned()),
            columns: columns.into_schema_columns(),
        });
    }

    pub fn check(&mut self, expression: &str) {
        self.constraints.push(ConstraintDef::Check {
            name: None,
            expression: expression.to_owned(),
        });
    }

    pub fn constraint(&mut self, name: &str) -> ConstraintBuilder<'_> {
        ConstraintBuilder {
            table: self,
            name: name.to_owned(),
        }
    }

    pub fn check_named(&mut self, name: &str, expression: &str) {
        self.constraints.push(ConstraintDef::Check {
            name: Some(name.to_owned()),
            expression: expression.to_owned(),
        });
    }

    pub fn index<I>(&mut self, name: &str, columns: I)
    where
        I: IntoSchemaColumns,
    {
        self.indexes
            .push(IndexBlueprint::new(name, self.name.as_str(), columns));
    }

    pub fn unique_index<I>(&mut self, name: &str, columns: I)
    where
        I: IntoSchemaColumns,
    {
        self.indexes.push(IndexBlueprint::new_unique(
            name,
            self.name.as_str(),
            columns,
        ));
    }

    fn push_column(&mut self, name: &str, ty: ColumnType) -> ColumnBuilder<'_> {
        self.columns.push(ColumnDef {
            name: name.to_owned(),
            ty,
            nullable: false,
            primary_key: false,
            auto_increment: false,
            unique: false,
            default_raw: None,
        });
        let index = self.columns.len() - 1;
        ColumnBuilder { table: self, index }
    }

    pub fn create_sql(&self, dialect: SchemaDialect) -> String {
        self.create_statements(dialect)
            .into_iter()
            .next()
            .expect("create table statements are never empty")
    }

    pub fn create_statements(&self, dialect: SchemaDialect) -> Vec<String> {
        let name = dialect.quote_ident(&self.name);
        let mut defs = self
            .columns
            .iter()
            .map(|column| render_column(dialect, column))
            .collect::<Vec<_>>();

        defs.extend(
            self.foreign_keys
                .iter()
                .map(|foreign| render_foreign_key(dialect, foreign)),
        );
        defs.extend(
            self.constraints
                .iter()
                .map(|constraint| render_constraint(dialect, constraint)),
        );

        let mut statements = vec![format!("create table {name} ({});", defs.join(", "))];
        statements.extend(self.indexes.iter().map(|index| index.create_sql(dialect)));
        statements
    }

    pub fn drop_sql(&self, dialect: SchemaDialect) -> String {
        format!("drop table if exists {};", dialect.quote_ident(&self.name))
    }

    pub async fn create<C>(self, ctx: &mut C) -> Result<(), MigrationError>
    where
        C: BlueprintExecutor,
    {
        for sql in self.create_statements(ctx.dialect()) {
            ctx.execute_raw_blueprint(&sql).await?;
        }
        Ok(())
    }
}

impl IndexBlueprint {
    pub fn named(name: &str) -> Self {
        Self {
            name: name.to_owned(),
            table: String::new(),
            columns: Vec::new(),
            unique: false,
        }
    }

    pub fn new<I>(name: &str, table: &str, columns: I) -> Self
    where
        I: IntoSchemaColumns,
    {
        Self {
            name: name.to_owned(),
            table: table.to_owned(),
            columns: columns.into_schema_columns(),
            unique: false,
        }
    }

    pub fn new_unique<I>(name: &str, table: &str, columns: I) -> Self
    where
        I: IntoSchemaColumns,
    {
        Self {
            name: name.to_owned(),
            table: table.to_owned(),
            columns: columns.into_schema_columns(),
            unique: true,
        }
    }

    pub fn create_sql(&self, dialect: SchemaDialect) -> String {
        let unique = if self.unique { "unique " } else { "" };
        let name = dialect.quote_ident(&self.name);
        let table = dialect.quote_ident(&self.table);
        let columns = self
            .columns
            .iter()
            .map(|column| dialect.quote_ident(column))
            .collect::<Vec<_>>()
            .join(", ");
        format!("create {unique}index {name} on {table} ({columns});")
    }

    pub fn drop_sql(&self, dialect: SchemaDialect) -> String {
        format!("drop index if exists {};", dialect.quote_ident(&self.name))
    }
}

impl AlterTableBlueprint {
    pub fn new(name: impl Into<String>) -> Self {
        Self {
            name: name.into(),
            operations: Vec::new(),
        }
    }

    pub fn drop_column(&mut self, name: &str) {
        self.operations
            .push(TableAlterOperation::DropColumn(name.to_owned()));
    }

    pub fn string(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Varchar(255))
    }

    pub fn text(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Text)
    }

    pub fn varchar(&mut self, name: &str, len: u32) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Varchar(len))
    }

    pub fn integer(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Integer)
    }

    pub fn bigint(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::BigInt)
    }

    pub fn boolean(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Bool)
    }

    pub fn date(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Date)
    }

    pub fn time(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Time)
    }

    pub fn datetime(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::DateTime)
    }

    pub fn timestamp(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Timestamp)
    }

    pub fn uuid(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Uuid)
    }

    pub(crate) fn custom(&mut self, name: &str, ty: ColumnType) -> AlterColumnBuilder<'_> {
        self.push_column(name, ty)
    }

    pub fn decimal(&mut self, name: &str, precision: u32, scale: u32) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Decimal(precision, scale))
    }

    pub fn float(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Float)
    }

    pub fn double(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Double)
    }

    pub fn json(&mut self, name: &str) -> AlterColumnBuilder<'_> {
        self.push_column(name, ColumnType::Json)
    }

    pub fn drop_columns<const N: usize>(&mut self, names: [&str; N]) {
        for name in names {
            self.drop_column(name);
        }
    }

    pub fn drop_timestamps(&mut self) {
        self.drop_columns(["created_at", "updated_at"]);
    }

    fn push_column(&mut self, name: &str, ty: ColumnType) -> AlterColumnBuilder<'_> {
        self.operations
            .push(TableAlterOperation::AddColumn(ColumnDef {
                name: name.to_owned(),
                ty,
                nullable: false,
                primary_key: false,
                auto_increment: false,
                unique: false,
                default_raw: None,
            }));
        let index = self.operations.len() - 1;
        AlterColumnBuilder { table: self, index }
    }

    pub(crate) fn sql_statements(&self, dialect: SchemaDialect) -> Vec<String> {
        if self.operations.is_empty() {
            return Vec::new();
        }

        let table_name = dialect.quote_ident(&self.name);

        match dialect {
            SchemaDialect::Sqlite => self
                .operations
                .iter()
                .map(|operation| match operation {
                    TableAlterOperation::DropColumn(name) => format!(
                        "alter table {table_name} drop column {};",
                        dialect.quote_ident(name)
                    ),
                    TableAlterOperation::AddColumn(column) => format!(
                        "alter table {table_name} add column {};",
                        render_column(dialect, column)
                    ),
                })
                .collect(),
            SchemaDialect::Postgres | SchemaDialect::MariaDb => {
                let actions = self
                    .operations
                    .iter()
                    .map(|operation| match operation {
                        TableAlterOperation::DropColumn(name) => {
                            format!("drop column {}", dialect.quote_ident(name))
                        }
                        TableAlterOperation::AddColumn(column) => {
                            format!("add column {}", render_column(dialect, column))
                        }
                    })
                    .collect::<Vec<_>>();

                vec![format!("alter table {table_name} {};", actions.join(", "))]
            }
        }
    }
}

pub struct ColumnBuilder<'a> {
    table: &'a mut TableBlueprint,
    index: usize,
}

pub struct AlterColumnBuilder<'a> {
    table: &'a mut AlterTableBlueprint,
    index: usize,
}

pub struct ConstraintBuilder<'a> {
    table: &'a mut TableBlueprint,
    name: String,
}

impl<'a> ColumnBuilder<'a> {
    pub fn index(self) -> Self {
        let table_name = self.table.name.clone();
        let column_name = self.table.columns[self.index].name.clone();
        let name = default_index_name(&table_name, &column_name);
        self.table.indexes.push(IndexBlueprint::new(
            &name,
            &table_name,
            [column_name.as_str()],
        ));
        self
    }

    pub fn default(self, value: DefaultValue) -> Self {
        self.table.columns[self.index].default_raw = Some(value.sql);
        self
    }

    pub fn nullable(self) -> Self {
        self.table.columns[self.index].nullable = true;
        self
    }

    pub fn unique(self) -> Self {
        self.table.columns[self.index].unique = true;
        self
    }

    pub fn default_raw(self, value: &str) -> Self {
        self.table.columns[self.index].default_raw = Some(value.to_owned());
        self
    }
}

impl<'a> AlterColumnBuilder<'a> {
    pub fn default(self, value: DefaultValue) -> Self {
        if let TableAlterOperation::AddColumn(column) = &mut self.table.operations[self.index] {
            column.default_raw = Some(value.sql);
        }
        self
    }

    pub fn nullable(self) -> Self {
        if let TableAlterOperation::AddColumn(column) = &mut self.table.operations[self.index] {
            column.nullable = true;
        }
        self
    }

    pub fn unique(self) -> Self {
        if let TableAlterOperation::AddColumn(column) = &mut self.table.operations[self.index] {
            column.unique = true;
        }
        self
    }

    pub fn default_raw(self, value: &str) -> Self {
        if let TableAlterOperation::AddColumn(column) = &mut self.table.operations[self.index] {
            column.default_raw = Some(value.to_owned());
        }
        self
    }
}

impl<'a> ConstraintBuilder<'a> {
    pub fn unique<I>(self, columns: I)
    where
        I: IntoSchemaColumns,
    {
        self.table.constraints.push(ConstraintDef::Unique {
            name: Some(self.name),
            columns: columns.into_schema_columns(),
        });
    }

    pub fn check(self, expression: &str) {
        self.table.constraints.push(ConstraintDef::Check {
            name: Some(self.name),
            expression: expression.to_owned(),
        });
    }
}

pub struct ForeignKeyBuilder<'a> {
    table: &'a mut TableBlueprint,
    index: usize,
    foreign_key: Option<usize>,
}

impl<'a> ForeignKeyBuilder<'a> {
    pub fn index(self) -> Self {
        let table_name = self.table.name.clone();
        let column_name = self.table.columns[self.index].name.clone();
        let name = default_index_name(&table_name, &column_name);
        self.table.indexes.push(IndexBlueprint::new(
            &name,
            &table_name,
            [column_name.as_str()],
        ));
        self
    }

    pub fn default(self, value: DefaultValue) -> Self {
        self.table.columns[self.index].default_raw = Some(value.sql);
        self
    }

    pub fn nullable(self) -> Self {
        self.table.columns[self.index].nullable = true;
        self
    }

    pub fn unique(self) -> Self {
        self.table.columns[self.index].unique = true;
        self
    }

    pub fn default_raw(self, value: &str) -> Self {
        self.table.columns[self.index].default_raw = Some(value.to_owned());
        self
    }

    pub fn constrained(self) -> Self {
        let column = self.table.columns[self.index].name.clone();
        let referenced_table = infer_referenced_table(&column);
        self.references(&referenced_table)
    }

    pub fn references(self, table: &str) -> Self {
        self.references_column(table, "id")
    }

    pub fn references_column(mut self, table: &str, column: &str) -> Self {
        let foreign_key = ForeignKeyDef {
            column: self.table.columns[self.index].name.clone(),
            references_table: table.to_owned(),
            references_column: column.to_owned(),
            on_delete: None,
            on_update: None,
        };

        match self.foreign_key {
            Some(index) => self.table.foreign_keys[index] = foreign_key,
            None => {
                self.table.foreign_keys.push(foreign_key);
                self.foreign_key = Some(self.table.foreign_keys.len() - 1);
            }
        }

        self
    }

    pub fn cascade_on_delete(self) -> Self {
        self.with_on_delete(ForeignKeyAction::Cascade)
    }

    pub fn restrict_on_delete(self) -> Self {
        self.with_on_delete(ForeignKeyAction::Restrict)
    }

    pub fn null_on_delete(self) -> Self {
        self.with_on_delete(ForeignKeyAction::SetNull)
    }

    pub fn no_action_on_delete(self) -> Self {
        self.with_on_delete(ForeignKeyAction::NoAction)
    }

    pub fn cascade_on_update(self) -> Self {
        self.with_on_update(ForeignKeyAction::Cascade)
    }

    pub fn restrict_on_update(self) -> Self {
        self.with_on_update(ForeignKeyAction::Restrict)
    }

    pub fn null_on_update(self) -> Self {
        self.with_on_update(ForeignKeyAction::SetNull)
    }

    pub fn no_action_on_update(self) -> Self {
        self.with_on_update(ForeignKeyAction::NoAction)
    }

    fn with_on_delete(mut self, action: ForeignKeyAction) -> Self {
        let index = self.ensure_foreign_key();
        self.table.foreign_keys[index].on_delete = Some(action);
        self
    }

    fn with_on_update(mut self, action: ForeignKeyAction) -> Self {
        let index = self.ensure_foreign_key();
        self.table.foreign_keys[index].on_update = Some(action);
        self
    }

    fn ensure_foreign_key(&mut self) -> usize {
        if let Some(index) = self.foreign_key {
            index
        } else {
            self.table.foreign_keys.push(ForeignKeyDef {
                column: self.table.columns[self.index].name.clone(),
                references_table: String::new(),
                references_column: "id".to_owned(),
                on_delete: None,
                on_update: None,
            });
            let index = self.table.foreign_keys.len() - 1;
            self.foreign_key = Some(index);
            index
        }
    }
}