GithubHelp home page GithubHelp logo

module-306-project-write-together's Introduction

๐ŸŒ Socials:

LinkedIn

๐Ÿ’ป Tech Stack:

Java HTML5 JavaScript Kotlin TypeScript Azure Firebase CSS3 NodeJS Next JS NPM MUI React React Native Redux Vite Vue.js Jenkins MariaDB MongoDB MySQL Figma ANSIBLE AZUREDEVOPS Docker Kubernetes ESLint Jira Swagger SonarQube SonarLint Confluence Babel Ansible

๐Ÿ“Š GitHub Stats:

module-306-project-write-together's People

Contributors

colinluetzelschwab avatar marcwelz avatar raphifurrer avatar timohiho avatar

Watchers

 avatar

module-306-project-write-together's Issues

Database create sql script

create table user
(
userID int auto_increment
primary key,
username varchar(50) not null,
constraint User_userID_uindex
unique (userID),
constraint User_username_uindex
unique (username)
);

create table lobby
(
lobbyID int auto_increment
primary key,
admin_ID int not null,
constraint lobby_lobbyID_uindex
unique (lobbyID),
constraint lobby_user_userID_fk
foreign key (admin_ID) references user (userID)
);

create table story
(
storyID int auto_increment
primary key,
participant_ID int not null,
lobby_ID int not null,
question enum ('1', '2', '3', '4', '5', '6') null,
answer varchar(100) not null,
constraint story_lobby_ID_participant_ID_question_uindex
unique (lobby_ID, participant_ID, question),
constraint story_storyID_uindex
unique (storyID),
constraint story_lobby_lobbyID_fk
foreign key (lobby_ID) references lobby (lobbyID),
constraint story_user_userID_fk
foreign key (participant_ID) references user (userID)
);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.