mirror of
https://github.com/penpot/penpot.git
synced 2025-01-27 00:49:28 -05:00
4 lines
211 B
SQL
4 lines
211 B
SQL
alter table http_session drop constraint http_session_pkey;
|
|
alter table http_session add primary key (id, profile_id);
|
|
alter table http_session drop column modified_at;
|
|
drop index http_session__profile_id__idx;
|