reconstruct job admin side
This commit is contained in:
@@ -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],
|
||||
|
||||
Reference in New Issue
Block a user