TT#17258 add active flag to reminders

Change-Id: I9497ad6c8b42dbedb12c972448c4ad52f49e494b
changes/17/13917/1
Gerhard Jungwirth 8 years ago
parent 3eea44b16d
commit e769581e45

@ -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

Loading…
Cancel
Save