Added visibled checkbox and little changes

This commit is contained in:
2022-02-16 11:12:42 +01:00
parent b4e14b3151
commit 1d89f724f9
7 changed files with 35 additions and 12 deletions

View File

@@ -27,6 +27,7 @@ class CreateProjectsTable extends Migration
$table->string('project_url', 255)->nullable()->default(null);
$table->string('project_version', 20)->nullable()->default(null);
$table->text('description')->nullable()->default(null);
$table->boolean('visible')->nullable()->default(false);
$table->timestamps();
});
}