Skip to content

Commit

Permalink
fix typo in read me
Browse files Browse the repository at this point in the history
  • Loading branch information
epsibashanthini committed Jan 20, 2023
1 parent f7477ef commit b09e88d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,24 @@ CREATE TABLE books (

## create Table books_issued
```sql
CEART TABLE books_issued (
CREATE TABLE books_issued (
bid int not null FOREIGN KEY REFERENCES books(bid),
issuedto varchar(255),
issued_date timestamp not null default current_timestamp on update current_timestamp,
return_date timestamp not null default current_timestamp on update current_timestamp
);
```
## Creating Pyhton Files
1. create main.py design the main page of the project
## Creating Python Files
1. create `main.py` design the main page of the project

2. addbook.py contains adding new book columns, such as (book id, book title, publication author, volume, publication year).
2. `addbook.py` contains adding new book columns, such as (book id, book title, publication author, volume, publication year).

3. deletebook.py for deleting the book by using the book id.
3. `deletebook.py` for deleting the book by using the book id.

4. viewbook.py; this page contains all the information about the book, which is already given to the add book page.
4. `viewbook.py` this page contains all the information about the book, which is already given to the add book page.

5. issuebook.py this page contains the bid and issue to (whos going to take the book and their information; if it is a student, give the student register number and if it is a staff give their name along with their department name)
5. `issuebook.py` this page contains the bid and issue to (whos going to take the book and their information; if it is a student, give the student register number and if it is a staff give their name along with their department name)

6. returnbook.py this page contains only the book.
6. `returnbook.py` this page contains only the book.

Here the issued date and the return date are updated automatically based on the Mysql query.

0 comments on commit b09e88d

Please sign in to comment.