mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 10:29:11 +00:00
Merge pull request #1 from srichatala/srichatala-patch-1
Update README.md
This commit is contained in:
commit
bf137551a5
20
README.md
20
README.md
@ -45,4 +45,24 @@ docker build -t drawdb .
|
|||||||
docker run -p 3000:80 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.
|
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