Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/common/src/db/schema/Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ export class Table<Columns extends ColumnsType = ColumnsType> {
* @param {TableV2Options} [v2Options] - Optional configuration options for V2 syntax
*
* @example
* <caption>New constructor example</caption>
* ```javascript
* // New Constructor
* const table = new Table(
* {
* name: column.text,
Expand All @@ -101,8 +101,8 @@ export class Table<Columns extends ColumnsType = ColumnsType> {
*
*
* @example
* <caption>Deprecated constructor example</caption>
* ```javascript
* // Deprecated Constructor
* const table = new Table({
* name: 'users',
* columns: [
Expand Down
Loading