add: guestbook
This commit is contained in:
8
sql/create_db.sql
Normal file
8
sql/create_db.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE DATABASE guestbook;
|
||||
USE guestbook;
|
||||
|
||||
CREATE TABLE guestbook (
|
||||
id INT PRIMARY KEY AUTO_INCREMENT,
|
||||
name VARCHAR(50),
|
||||
message TEXT
|
||||
);
|
||||
Reference in New Issue
Block a user