9 lines
224 B
MySQL
9 lines
224 B
MySQL
|
|
alter table contacts add column
|
||
|
|
can_stale boolean not null default true;
|
||
|
|
|
||
|
|
alter table contacts add column
|
||
|
|
periodicity text not null default 'P0D';
|
||
|
|
|
||
|
|
alter table contacts add column
|
||
|
|
active boolean not null default true;
|