mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-23 04:53:06 +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);
|
||
|
|