-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add migration script for polymer redesign
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/sh | ||
|
||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN title CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN views CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN likes CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN dislikes CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN wilson_score CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN published CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN description CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN language CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN author CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN ucid CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN allowed_regions CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN is_family_friendly CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN genre CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN genre_url CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN license CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN sub_count_text CASCADE" | ||
psql invidious kemal -c "ALTER TABLE videos DROP COLUMN author_thumbnail CASCADE" |