fix table texts fields
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Failing after 26m2s
Details
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Failing after 26m2s
Details
This commit is contained in:
parent
7f73d96875
commit
15eb07d0b2
|
@ -13,7 +13,7 @@ return new class extends Migration
|
||||||
{
|
{
|
||||||
Schema::create('task_statuses', function (Blueprint $table) {
|
Schema::create('task_statuses', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('name');
|
$table->string('name', 255);
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ return new class extends Migration
|
||||||
{
|
{
|
||||||
Schema::create('labels', function (Blueprint $table) {
|
Schema::create('labels', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('name');
|
$table->string('name', 255);
|
||||||
$table->string('description')->nullable();
|
$table->string('description')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
|
|
|
@ -13,6 +13,7 @@ return new class extends Migration
|
||||||
{
|
{
|
||||||
Schema::create('departments', function (Blueprint $table) {
|
Schema::create('departments', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
|
$table->string('name', 255);
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,8 @@ return new class extends Migration
|
||||||
{
|
{
|
||||||
Schema::create('notes', function (Blueprint $table) {
|
Schema::create('notes', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
|
$table->string('name', 255);
|
||||||
|
$table->text('description')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,8 +13,9 @@ return new class extends Migration
|
||||||
{
|
{
|
||||||
Schema::create('tasks', function (Blueprint $table) {
|
Schema::create('tasks', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('name');
|
$table->string('name', 255);
|
||||||
$table->text('description')->nullable();
|
$table->text('description')->nullable();
|
||||||
|
$table->string('url', 255)->nullable();
|
||||||
$table->foreignId('status_id')->constrained('task_statuses');
|
$table->foreignId('status_id')->constrained('task_statuses');
|
||||||
$table->foreignId('created_by_id')->constrained('users');
|
$table->foreignId('created_by_id')->constrained('users');
|
||||||
$table->bigInteger('assigned_to_id')->nullable();
|
$table->bigInteger('assigned_to_id')->nullable();
|
Loading…
Reference in New Issue