mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-02 09:11:22 +00:00
6 lines
149 B
MySQL
6 lines
149 B
MySQL
ALTER TABLE post
|
|||
ADD COLUMN scheduled_publish_time timestamptz;
|
|||
|
|||
CREATE INDEX idx_post_scheduled_publish_time ON post (scheduled_publish_time);
|
|||
|