mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 02:09:17 +00:00
Update README.md
This commit is contained in:
parent
fc936b92e5
commit
58ca33ce42
20
README.md
20
README.md
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user