Skip to content

Commit 6abe13b

Browse files
committed
address as a text column
1 parent 513af2d commit 6abe13b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/database/migrations/2014_01_13_094853_create_places_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function up()
1515
Schema::create('places', function (Blueprint $table) {
1616
$table->engine = 'InnoDB';
1717
$table->increments('id');
18-
$table->string('address')->nullable();
18+
$table->text('address')->nullable();
1919
$table->string('email')->nullable();
2020
$table->string('phone')->nullable();
2121
$table->string('fax')->nullable();

0 commit comments

Comments
 (0)