mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-16 04:02:15 +01:00
Added default importer; Fixed bug in clockify importer
This commit is contained in:
@@ -15,7 +15,7 @@ return new class extends Migration
|
||||
{
|
||||
Schema::create('tasks', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->string('name', 255);
|
||||
$table->string('name', 500);
|
||||
$table->uuid('project_id');
|
||||
$table->foreign('project_id')
|
||||
->references('id')
|
||||
|
||||
@@ -15,7 +15,7 @@ return new class extends Migration
|
||||
{
|
||||
Schema::create('time_entries', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->string('description', 255);
|
||||
$table->string('description', 500);
|
||||
$table->dateTime('start');
|
||||
$table->dateTime('end')->nullable();
|
||||
$table->boolean('billable')->default(false);
|
||||
|
||||
Reference in New Issue
Block a user