- add ProjectsTableSeeder.php

- project label: allow 10 chars
This commit is contained in:
Arno Kaimbacher 2019-09-03 17:43:56 +02:00
parent 4b5136ab9b
commit 54edfb4617
4 changed files with 29 additions and 2 deletions

View file

@ -15,7 +15,7 @@ class CreateProjectsTable extends Migration
{
Schema::create('projects', function (Blueprint $table) {
$table->increments('id');
$table->string('label', 10);
$table->string('label', 20);
$table->string('name', 255);
$table->string('description', 255)->nullable();
$table->timestamps();