Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/first-coding/little_television
- Owner: first-coding
- Created: 2024-02-11T13:52:10.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-22T14:35:35.000Z (9 months ago)
- Last Synced: 2024-03-25T05:40:12.669Z (8 months ago)
- Topics: html-css-javascript, mysql, python, television
- Language: JavaScript
- Homepage:
- Size: 3.27 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
);