Skip to content

Commit 17b4f3b

Browse files
committed
Renames TableName to Table
1 parent 0268b78 commit 17b4f3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Web/Documentation/content/main/1-essentials/05-models.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ $books[0]->chapters[2]->delete();
9292

9393
### Table naming
9494

95-
Tempest will infer a table name for your models based on the model's class name. You can override this name by using the `TableName` attribute:
95+
Tempest will infer a table name for your models based on the model's class name. You can override this name by using the `Table` attribute:
9696

9797
```php
98-
use Tempest\Database\TableName;
98+
use Tempest\Database\Table;
9999

100-
#[TableName('my_books')]
100+
#[Table('my_books')]
101101
final class Book
102102
{
103103
// …

0 commit comments

Comments
 (0)