Skip to content

Commit e392fa7

Browse files
committed
Simplified migration.
1 parent 60bcb04 commit e392fa7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/database/migrations/2013_11_14_125340_CreatePostTable.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ public function up()
1414
$table->string("title_nl");
1515
$table->text("content_en");
1616
$table->text("content_nl");
17-
$table->dateTime("created_at");
18-
$table->dateTime("updated_at");
19-
$table->dateTime("deleted_at");
17+
$table->timestamps();
2018
});
2119
}
2220

0 commit comments

Comments
 (0)