Allow seeking stream backwards to the beginning #58

Closed
bilal.catic wants to merge 6 commits from allow-seeking-stream-backwards-to-the-beginning into master
Showing only changes of commit b3747f51fc - Show all commits

View File

@@ -9,20 +9,6 @@ SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
--
-- Name: fuzzystrmatch; Type: EXTENSION; Schema: -; Owner: -
--
@@ -554,7 +540,8 @@ CREATE TABLE public.broadcasts (
stream_playback_uid character varying,
token character varying,
streamer_status integer DEFAULT 0,
shoot_location_time_zone character varying DEFAULT 'UTC'::character varying
shoot_location_time_zone character varying DEFAULT 'UTC'::character varying,
full_live_stream_playback_uid character varying
);
@@ -3954,6 +3941,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20200716094927'),
('20200716103525'),
('20200716105723'),
('20200720051634');
('20200720051634'),
('20200720131309');