Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kaplanelad committed Jan 23, 2025
1 parent 77118f7 commit efe12b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/loco-gen-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ jobs:
run: |
cargo run -- generate scaffold --api room \
uuid_uniq:uuid \
uuid_null:uuid_col \
uuid:uuid_col! \
uuid_null:uuid \
uuid:uuid! \
string_null:string \
string:string! \
string_uniq:string^ \
Expand Down
6 changes: 3 additions & 3 deletions docs-site/content/docs/the-app/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ These fields are ignored if you provide them in your migration command.
For schema data types, you can use the following mapping to understand the schema:

```rust
("uuid", "uuid_uniq"),
("uuid_col", "uuid_null"),
("uuid_col!", "uuid"),
("uuid^", "uuid_uniq"),
("uuid", "uuid_null"),
("uuid!", "uuid"),
("string", "string_null"),
("string!", "string"),
("string^", "string_uniq"),
Expand Down

0 comments on commit efe12b8

Please sign in to comment.