Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPopular repositories
-
-
-
Forked from knex/knex-schema-inspector
Utility for extracting information about existing DB schema
TypeScript
-
Forked from cookpete/react-player
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
JavaScript
288 contributions in the last year
Contribution activity
October - November 2020
September 2020
Created 27 commits in 2 repositories
Opened 8 pull requests in 1 repository
knex/knex-schema-inspector
8
merged
- Query was failing. This has been amended to resolve this issue.
- amended queries so correct constraint and primary key details are being retrieved.
- get auto increment for columns
- use catalog rather than schema to retrieve tables based on database name
- fixed Case on results output of primary key query
- fixed missing quotes in query
- fix primary key query for mssql
- mssql support
Created an issue in knex/knex-schema-inspector that received 1 comment
MSSQL columnInfo() not returning correct value for primary key
is_primary_key always returns false.
.leftJoin('INFORMATION_SCHEMA.KEY_COLUMN_USAGE as fk', function () { this.on('c.TABLE_NAME', '=', 'fk.TABLE_N…