We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab0560 commit 563fc82Copy full SHA for 563fc82
mithril-aggregator/src/database/migration.rs
@@ -610,5 +610,14 @@ alter table open_message add column is_expired bool not null default false;
610
alter table open_message add column expires_at text null;
611
"#,
612
),
613
+ // Migration 21
614
+ // Add the `signed_entity_type` record for 'CardanoTransactions'
615
+ SqlMigration::new(
616
+ 21,
617
+ r#"
618
+insert into signed_entity_type (signed_entity_type_id, name)
619
+ values (3, 'Cardano Transactions');
620
+"#,
621
+ ),
622
]
623
}
0 commit comments