You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2023-07-11-084714_receive_a.../down.sql

29 lines
610 B
SQL

CREATE TABLE activity (
id serial PRIMARY KEY,
data jsonb NOT NULL,
local boolean NOT NULL DEFAULT TRUE,
published timestamp NOT NULL DEFAULT now(),
updated timestamp,
ap_id text NOT NULL,
sensitive boolean NOT NULL DEFAULT TRUE
);
INSERT INTO activity (ap_id, data, sensitive, published)
SELECT
ap_id,
data,
sensitive,
published
FROM
sent_activity
ORDER BY
id DESC
LIMIT 100000;
-- We cant copy received_activity entries back into activities table because we dont have data
-- which is mandatory.
DROP TABLE sent_activity;
DROP TABLE received_activity;