diff --git a/lib/NGCP/Schema/Result/voip_reminder.pm b/lib/NGCP/Schema/Result/voip_reminder.pm index d7157b37..3d078b33 100644 --- a/lib/NGCP/Schema/Result/voip_reminder.pm +++ b/lib/NGCP/Schema/Result/voip_reminder.pm @@ -32,6 +32,12 @@ __PACKAGE__->add_columns( extra => { list => ["never", "weekdays", "always"] }, is_nullable => 0, }, + "active", + { + data_type => "tinyint", + default_value => 1, + is_nullable => 0, + }, ); __PACKAGE__->set_primary_key("id"); @@ -102,6 +108,12 @@ NGCP::Schema::Result::voip_reminder extra: {list => ["never","weekdays","always"]} is_nullable: 0 +=head2 active + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + =head1 PRIMARY KEY =over 4