-
-
Notifications
You must be signed in to change notification settings - Fork 29
Add comment generation to TypeScript interfaces #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -81,6 +81,12 @@ export const AUTHORS_TABLE_CREATES = [ | |
| full_name VARCHAR(80) not null | ||
| ); | ||
| `, | ||
| `EXEC sp_addextendedproperty | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've updated all the tests to add their version of a comment and they all pass when I run them.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Exception is sqllite as it doesn't support comments |
||
| @name = N'MS_Description', | ||
| @value = 'This column stores the PK', | ||
| @level0type = N'SCHEMA', @level0name = 'dbo', | ||
| @level1type = N'TABLE', @level1name = 'authors', | ||
| @level2type = N'COLUMN', @level2name = 'author_id';` | ||
| ]; | ||
| export const AUTHORS_TABLE_INSERTS = [ | ||
| `INSERT INTO ${AUTHORS_TABLE_NAME} VALUES (1, 'Isasc Asimov');`, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Main change here to add the comments using
addSyntheticLeadingComment