Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

embed-player

A HTML based embed player supports iframe for websites.

Postgresql Table Schema

CREATE TABLE videos (
  id integer NOT NULL DEFAULT nextval('videos_id_seq'::regclass),
  video_id character varying NOT NULL UNIQUE,
  title character varying NOT NULL,
  url text NOT NULL,
  created_by integer,
  created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP,
  CONSTRAINT videos_pkey PRIMARY KEY (id),
  CONSTRAINT videos_created_by_fkey FOREIGN KEY (created_by) REFERENCES public.users(id)
);

About

A HTML based embed player supports iframe for websites.

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages