Skip to content

Commit

Permalink
Merge pull request laravel#1494 from antonybudianto/patch-4
Browse files Browse the repository at this point in the history
Remove backslash on column name
  • Loading branch information
taylorotwell committed Jun 1, 2015
2 parents f866e38 + 6df7db4 commit 754c40f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ Command | Description
`$table->time('sunrise');` | TIME equivalent for the database.
`$table->tinyInteger('numbers');` | TINYINT equivalent for the database.
`$table->timestamp('added_on');` | TIMESTAMP equivalent for the database.
`$table->timestamps();` | Adds `created\_at` and `updated\_at` columns.
`$table->timestamps();` | Adds `created_at` and `updated_at` columns.

#### Column Modifiers

Expand Down

0 comments on commit 754c40f

Please sign in to comment.