Skip to content

Commit

Permalink
fix: fixed table relation #15
Browse files Browse the repository at this point in the history
  • Loading branch information
stevan06v committed Jan 19, 2024
1 parent 29a3803 commit c8f2520
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Models/Project.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Project extends Model

protected $fillable = [
"project_url",
"project_id",
"project_identification",
"user_id"
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public function up(): void
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');

$table->rememberToken();
$table->timestamps();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function up(): void
$table->id();
$table->unsignedBigInteger('user_id');
$table->string('project_url');
$table->string('project_id');
$table->string('project_identification');
$table->timestamps();
});
}
Expand Down
2 changes: 1 addition & 1 deletion docs/diagram/erd.puml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class User {

class Project {
project_url :String
project_id :String
project_identification :String

}

Expand Down

0 comments on commit c8f2520

Please sign in to comment.