담당자 : 백승일

Server


https://eottae-cinema.herokuapp.com/

Database


(예시)

create table theaters(
theaterLocation varchar(10), 영화지점 정보
foreign key (theaterLocation) references location(point), 신경안써도 됨
moviedate date, 관람날짜
movieTitle varchar(20), 영화제목
bookId bigint auto_increment primary key, 
movieTime time, 영화 상영 시간
stage varchar(10), 영화관 번호
allSeat int(100), 영화관 총 좌석
bookedSeatNum int(100), 영화관 예매 수
bookedSeat varchar(929) 예매된 좌석 정보
);

📝영화 지점 정보(html)