This commit is contained in:
parent
cd4096b2ff
commit
a0afb6dfd3
24 changed files with 536 additions and 274 deletions
|
|
@ -2,3 +2,8 @@ create table if not exists groups (
|
|||
contact_id integer not null references contacts(id) on delete cascade,
|
||||
name text not null
|
||||
);
|
||||
|
||||
alter table contact_mentions rename to journal_mentions;
|
||||
alter table journal_mentions add column url text not null default '';
|
||||
update journal_mentions set url = '/contact/'||contact_id;
|
||||
alter table journal_mentions drop column contact_id;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue