Skip to content
Open
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
2 changes: 1 addition & 1 deletion content/docs/migrations/table_builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ this.schema.createTable('products', (table) => {

Adds a decimal column, with **optional precision (defaults to 8)** and **scale (defaults to 2)**.

Specifying `null` as precision creates a decimal column that can store numbers of precision and scale. (Only supported for Oracle, SQLite, Postgres)
Specifying `null` as precision creates a decimal column that can store numbers of any precision and scale. (Only supported for Oracle, SQLite, Postgres)

```ts
this.schema.createTable('products', (table) => {
Expand Down