reconstruct job admin side
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 49s
Tests / PHPUnit (push) Successful in 1m23s

This commit is contained in:
root
2026-09-03 01:58:54 -04:00
parent 228824182a
commit 6936a822c8
11 changed files with 166 additions and 3 deletions
@@ -16,6 +16,7 @@ class CreateJobPostings extends Migration
'department' => ['type' => 'VARCHAR', 'constraint' => 255, 'null' => true],
'location' => ['type' => 'VARCHAR', 'constraint' => 255, 'null' => true],
'employment_type' => ['type' => 'VARCHAR', 'constraint' => 50, 'null' => true],
'responsibilities' => ['type' => 'TEXT', 'null' => true],
'requirements' => ['type' => 'TEXT', 'null' => true],
'version' => ['type' => 'INT', 'constraint' => 11, 'default' => 1],
'is_active' => ['type' => 'TINYINT', 'constraint' => 1, 'default' => 1],
@@ -38,6 +39,7 @@ class CreateJobPostings extends Migration
'department' => ['type' => 'VARCHAR', 'constraint' => 255, 'null' => true],
'location' => ['type' => 'VARCHAR', 'constraint' => 255, 'null' => true],
'employment_type' => ['type' => 'VARCHAR', 'constraint' => 50, 'null' => true],
'responsibilities' => ['type' => 'TEXT', 'null' => true],
'requirements' => ['type' => 'TEXT', 'null' => true],
'saved_by' => ['type' => 'INT', 'constraint' => 11, 'unsigned' => true, 'null' => true],
'saved_at' => ['type' => 'DATETIME', 'null' => true],
@@ -56,6 +58,7 @@ class CreateJobPostings extends Migration
'department' => ['type' => 'VARCHAR', 'constraint' => 255, 'null' => true],
'location' => ['type' => 'VARCHAR', 'constraint' => 255, 'null' => true],
'employment_type' => ['type' => 'VARCHAR', 'constraint' => 50, 'null' => true],
'responsibilities' => ['type' => 'TEXT', 'null' => true],
'requirements' => ['type' => 'TEXT', 'null' => true],
'status' => ['type' => 'VARCHAR', 'constraint' => 20, 'default' => 'draft'],
'posted_by' => ['type' => 'INT', 'constraint' => 11, 'unsigned' => true, 'null' => true],