Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
feat: add schema scripting
Browse files Browse the repository at this point in the history
  • Loading branch information
justinlettau committed Jun 19, 2017
1 parent 8651232 commit 32e75f7
Show file tree
Hide file tree
Showing 19 changed files with 119 additions and 27 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ Example output:
./functions/table-valued
dbo.awesome-table-func.sql
...
./schemas
dbo.sql
...
./stored-procedures
dbo.people-read.sql
...
Expand Down Expand Up @@ -108,15 +111,18 @@ Configuration options are stored in a `ssc.json` file.
// directory to place scripted files into (relative to config file)
"root": "./_sql-database",

// directory to script procs (relative to root)
"procs": "./stored-procedures",

// directory to script schemas (relative to root)
"schemas": "./schemas",

// directory to script scalar functions (relative to root)
"scalar-valued": "./functions/scalar-valued",

// directory to script table functions (relative to root)
"table-valued": "./functions/table-valued",

// directory to script procs (relative to root)
"procs": "./stored-procedures",

// directory to script tables (relative to root)
"tables": "./tables",

Expand Down
1 change: 1 addition & 0 deletions dist/commands/cat.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commands/cat.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 23 additions & 4 deletions dist/commands/pull.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commands/pull.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions dist/common/utility.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 32e75f7

Please sign in to comment.