mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-17 09:54:01 +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);
|
||
|
|