Skip to content

Commit cd74bc4

Browse files
committed
Merge pull request laravelio#229 from sulfo/fix-migration
Description field now nullable
2 parents f633fc4 + 30e6ae2 commit cd74bc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2013_09_23_111349_add_description_field_to_tags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class AddDescriptionFieldToTags extends Migration
1313
public function up()
1414
{
1515
Schema::table('tags', function(Blueprint $table) {
16-
$table->text('description')->default('');
16+
$table->text('description')->nullable();
1717
});
1818
}
1919

0 commit comments

Comments
 (0)