Merge pull request #1 from srichatala/srichatala-patch-1

Update README.md
This commit is contained in:
SriChatala 2024-10-24 22:35:29 -04:00 committed by GitHub
commit bf137551a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,4 +45,24 @@ docker build -t drawdb .
docker run -p 3000:80 drawdb
```
### Script Examples
MSSQL Server Script
```sql
CREATE TABLE categories (
id INT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
description TEXT
);
CREATE TABLE products (
id INT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
description TEXT,
price DECIMAL(10,2) NOT NULL,
category_id INT NOT NULL,
FOREIGN KEY (category_id) REFERENCES categories(id)
);
```
Set up the [server](https://github.com/drawdb-io/drawdb-server) and environment variables according to `.env.sample` for the survey and bug report forms.