2019-03-23 21:58:24 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
2019-04-06 18:08:33 +05:30
|
|
|
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 21:58:24 +05:30
|
|
|
|
2019-04-06 18:08:33 +05:30
|
|
|
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"
|