File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
v2_migrations/2025-04-08-101702_add_recovery_algorithm_column_in_business_profile Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,6 @@ pub enum CardDiscovery {
213
213
Clone ,
214
214
Copy ,
215
215
Debug ,
216
- Default ,
217
216
Hash ,
218
217
Eq ,
219
218
PartialEq ,
@@ -228,7 +227,6 @@ pub enum CardDiscovery {
228
227
#[ serde( rename_all = "snake_case" ) ]
229
228
#[ strum( serialize_all = "snake_case" ) ]
230
229
pub enum RevenueRecoveryAlgorithmType {
231
- #[ default]
232
230
Monitoring ,
233
231
Smart ,
234
232
Cascading ,
Original file line number Diff line number Diff line change 2
2
CREATE TYPE "RevenueRecoveryAlgorithmType " AS ENUM (' monitoring' , ' smart' , ' cascading' );
3
3
4
4
ALTER TABLE business_profile
5
- ADD COLUMN IF NOT EXISTS revenue_recovery_retry_algorithm_type " RevenueRecoveryAlgorithmType" DEFAULT ' monitoring ' ,
5
+ ADD COLUMN IF NOT EXISTS revenue_recovery_retry_algorithm_type " RevenueRecoveryAlgorithmType" ,
6
6
ADD COLUMN IF NOT EXISTS revenue_recovery_retry_algorithm_data JSONB;
You can’t perform that action at this time.
0 commit comments