This generates the transcript and shows the caption experience on the client side for media particles. It also simplifies other side effects that we must perform such as updating the `last_child_created_at` field for stream and container particles.
5 lines
124 B
SQL
5 lines
124 B
SQL
CREATE TABLE processed_particles (
|
|
particle_id TEXT PRIMARY KEY,
|
|
processed_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
|
);
|