Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/first-coding/little_television

televison base on html which can display and edit the description of the mp4, mkv that can make you watch movie with friends
https://github.com/first-coding/little_television

html-css-javascript mysql python television

Last synced: 12 days ago
JSON representation

televison base on html which can display and edit the description of the mp4, mkv that can make you watch movie with friends

Awesome Lists containing this project

README

        

This is little_television project.
CREATE TABLE history(
user_id VARCHAR(255) NOT NULL COMMENT 'user_id',
history_data VARCHAR(255) COMMENT 'history_data',
PRIMARY KEY(user_id, history_data)
);
CREATE TABLE user(
user_id VARCHAR(255) NOT NULL COMMENT 'user_id',
password VARCHAR(255) COMMENT 'password',
PRIMARY KEY (user_id)
);