Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 0d4ccfe

Browse files
bpamiriclaude
andcommitted
Remove integer limit from logs migration for CockroachDB
CockroachDB/PostgreSQL don't support INTEGER(n) syntax. Removed limit=36 from user_id column definition. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 04f1970 commit 0d4ccfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/migrator/migrations/20250428154828_creates_logs_table.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ component extends="wheels.migrator.Migration" hint="creates logs table" {
1111
t.text(columnNames='details', null=true);
1212
t.string(columnNames='ip_address', null=true, limit=50);
1313
t.string(columnNames='user_agent', null=true, limit=255);
14-
t.integer(columnNames='user_id', null=true, limit=36);
14+
t.integer(columnNames='user_id', null=true);
1515
t.timestamps();
1616
t.create();
1717

0 commit comments

Comments
 (0)