Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions backend/migrations/005_add_cliff_seconds.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE streams DROP COLUMN cliff_seconds;
ALTER TABLE stream_archive DROP COLUMN cliff_seconds;
2 changes: 2 additions & 0 deletions backend/migrations/005_add_cliff_seconds.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE streams ADD COLUMN cliff_seconds INTEGER NOT NULL DEFAULT 0;
ALTER TABLE stream_archive ADD COLUMN cliff_seconds INTEGER NOT NULL DEFAULT 0;
Loading