Skip to content

Commit 648f31f

Browse files
Too many arguments for text field.
1 parent fd41611 commit 648f31f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/migrations/2020_04_10_154637_create_citations_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function up()
1616
Schema::create('citations', function (Blueprint $table) {
1717
$table->increments('id');
1818
$table->string('name');
19-
$table->text('description', 65535);
19+
$table->text('description');
2020
$table->dateTime('date')->nullable();
2121
$table->integer('is_active');
2222
$table->integer('volume');

src/migrations/2020_04_10_155134_create_places_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function up()
1616
Schema::create('places', function (Blueprint $table) {
1717
$table->id();
1818
$table->string('title');
19-
$table->text('description', 65535);
19+
$table->text('description');
2020
$table->dateTime('date')->nullable();
2121
$table->timestamps();
2222
});

0 commit comments

Comments
 (0)