Skip to content

Commit

Permalink
Merge pull request laravel#265 from JosephSilber/master
Browse files Browse the repository at this point in the history
Remove duplicated sentence in Eloquent.
  • Loading branch information
taylorotwell committed May 28, 2013
2 parents 19b61df + b66fce8 commit 8e1df38
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions eloquent.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ Note that we did not tell Eloquent which table to use for our `User` model. The

}

Eloquent will also assume each table has a primary key column named `id`. You may define a `primaryKey` property to override this convention. Likewise, you may define a `connection` property to override the name of the database connection that should be used when utilizing the model.

> **Note:** Eloquent will also assume that each table has a primary key column named `id`. You may define a `primaryKey` property to override this convention:
> **Note:** Eloquent will also assume that each table has a primary key column named `id`. You may define a `primaryKey` property to override this convention. Likewise, you may define a `connection` property to override the name of the database connection that should be used when utilizing the model.
Once a model is defined, you are ready to start retrieving and creating records in your table. Note that you will need to place `updated_at` and `created_at` columns on your table by default. If you do not wish to have these columns automatically maintained, set the `$timestamps` property on your model to `false`.

Expand Down

0 comments on commit 8e1df38

Please sign in to comment.