File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
crates/vespertide-planner/src Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -425,6 +425,7 @@ mod tests {
425425 #[ case:: create_only(
426426 vec![ MigrationPlan {
427427 comment: None ,
428+ created_at: None ,
428429 version: 1 ,
429430 actions: vec![ MigrationAction :: CreateTable {
430431 table: "users" . into( ) ,
@@ -443,6 +444,7 @@ mod tests {
443444 vec![
444445 MigrationPlan {
445446 comment: None ,
447+ created_at: None ,
446448 version: 1 ,
447449 actions: vec![ MigrationAction :: CreateTable {
448450 table: "users" . into( ) ,
@@ -452,6 +454,7 @@ mod tests {
452454 } ,
453455 MigrationPlan {
454456 comment: None ,
457+ created_at: None ,
455458 version: 2 ,
456459 actions: vec![ MigrationAction :: AddColumn {
457460 table: "users" . into( ) ,
@@ -474,6 +477,7 @@ mod tests {
474477 vec![
475478 MigrationPlan {
476479 comment: None ,
480+ created_at: None ,
477481 version: 1 ,
478482 actions: vec![ MigrationAction :: CreateTable {
479483 table: "users" . into( ) ,
@@ -483,6 +487,7 @@ mod tests {
483487 } ,
484488 MigrationPlan {
485489 comment: None ,
490+ created_at: None ,
486491 version: 2 ,
487492 actions: vec![ MigrationAction :: AddColumn {
488493 table: "users" . into( ) ,
@@ -492,6 +497,7 @@ mod tests {
492497 } ,
493498 MigrationPlan {
494499 comment: None ,
500+ created_at: None ,
495501 version: 3 ,
496502 actions: vec![ MigrationAction :: AddIndex {
497503 table: "users" . into( ) ,
@@ -616,6 +622,7 @@ mod tests {
616622 fn plan_next_migration_sets_next_version ( ) {
617623 let applied = vec ! [ MigrationPlan {
618624 comment: None ,
625+ created_at: None ,
619626 version: 1 ,
620627 actions: vec![ MigrationAction :: CreateTable {
621628 table: "users" . into( ) ,
You can’t perform that action at this time.
0 commit comments