8 lines
359 B
Bash
Raw Normal View History

2019-03-23 11:28:24 -05:00
#!/bin/sh
2019-04-06 07:38:33 -05:00
psql invidious kemal -c "ALTER TABLE channel_videos DROP COLUMN live_now CASCADE"
psql invidious kemal -c "ALTER TABLE channel_videos DROP COLUMN premiere_timestamp CASCADE"
2019-03-23 11:28:24 -05:00
2019-04-06 07:38:33 -05:00
psql invidious kemal -c "ALTER TABLE channel_videos ADD COLUMN live_now bool"
psql invidious kemal -c "ALTER TABLE channel_videos ADD COLUMN premiere_timestamp timestamptz"