Skip to content

Commit 4b07798

Browse files
Text does not need second argument.
1 parent 32b6549 commit 4b07798

5 files changed

+10
-10
lines changed

src/migrations/2020_04_10_155019_create_notes_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('notes', function (Blueprint $table) {
1717
$table->increments('id');
1818
$table->string('name')->nullable();
19-
$table->text('description', 65535)->nullable();
19+
$table->text('description')->nullable();
2020
$table->dateTime('date')->nullable();
2121
$table->integer('type_id')->nullable();
2222
$table->integer('is_active')->nullable();

src/migrations/2020_04_10_155307_create_repositories_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function up()
1818
$table->string('group')->nullable();
1919
$table->integer('gid')->nullable();
2020
$table->string('name')->nullable();
21-
$table->text('description', 65535)->nullable();
21+
$table->text('description')->nullable();
2222
$table->dateTime('date')->nullable();
2323
$table->integer('is_active')->nullable();
2424
$table->integer('type_id')->nullable();

src/migrations/2020_04_10_155413_create_sources_table.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,24 @@ public function up()
1616
Schema::create('sources', function (Blueprint $table) {
1717
$table->increments('id');
1818
$table->string('name')->nullable();
19-
$table->text('description', 65535)->nullable();
19+
$table->text('description')->nullable();
2020
$table->dateTime('date')->nullable();
2121
$table->integer('is_active')->nullable();
2222
$table->integer('author_id')->nullable();
2323
$table->integer('repository_id')->references('id')->on('repositories')->nullable();
2424
$table->integer('publication_id')->nullable();
2525
$table->integer('type_id')->nullable();
2626
$table->string('sour')->nullable();
27-
$table->text('titl', 65535)->nullable();
27+
$table->text('titl')->nullable();
2828
$table->string('auth')->nullable();
2929
$table->string('data')->nullable();
30-
$table->text('text', 65535)->nullable();
31-
$table->text('publ', 65535)->nullable();
30+
$table->text('text')->nullable();
31+
$table->text('publ')->nullable();
3232
$table->string('abbr')->nullable();
3333
$table->string('group')->nullable();
3434
$table->integer('gid')->nullable();
3535
$table->string('quay')->nullable();
36-
$table->text('page', 65535)->nullable();
36+
$table->text('page')->nullable();
3737
$table->string('rin')->nullable();
3838
$table->string('note')->nullable();
3939
$table->timestamps();

src/migrations/2020_06_01_112312_update_events_add_timestamp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function up()
2222
$table->string('plac')->nullable();
2323
$table->integer('addr_id')->nullable();
2424
$table->string('phon')->nullable();
25-
$table->text('caus', 65535)->nullable();
25+
$table->text('caus')->nullable();
2626
$table->string('age')->nullable();
2727
$table->string('agnc')->nullable();
2828
$table->string('adop')->nullable();
@@ -37,7 +37,7 @@ public function up()
3737
$table->string('plac')->nullable();
3838
$table->integer('addr_id')->nullable();
3939
$table->string('phon')->nullable();
40-
$table->text('caus', 65535)->nullable();
40+
$table->text('caus')->nullable();
4141
$table->string('age')->nullable();
4242
$table->string('agnc')->nullable();
4343
$table->integer('husb')->nullable();

src/migrations/2020_06_11_152802_update_description_default_places_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function up()
2020
});
2121
}
2222
Schema::table('places', function (Blueprint $table) {
23-
$table->text('description', 65535)->nullable()->after('date');
23+
$table->text('description')->nullable()->after('date');
2424
});
2525
}
2626

0 commit comments

Comments
 (0)