diff --git a/app/Models/Project.php b/app/Models/Project.php index 4c0591929a..8325da9b16 100644 --- a/app/Models/Project.php +++ b/app/Models/Project.php @@ -29,7 +29,6 @@ * @property int $emailtesttimingchanged * @property int $emailbrokensubmission * @property int $emailredundantfailures - * @property int $showipaddresses * @property string $cvsviewertype * @property int $testtimestd * @property int $testtimestdthreshold @@ -77,7 +76,6 @@ class Project extends Model 'emailtesttimingchanged', 'emailbrokensubmission', 'emailredundantfailures', - 'showipaddresses', 'cvsviewertype', 'testtimestd', 'testtimestdthreshold', diff --git a/app/cdash/app/Model/Project.php b/app/cdash/app/Model/Project.php index a2819bdc3c..c49d45c153 100644 --- a/app/cdash/app/Model/Project.php +++ b/app/cdash/app/Model/Project.php @@ -68,7 +68,6 @@ class Project public $TestTimeMaxStatus; public $EmailMaxItems = 5; public $EmailMaxChars = 255; - public $ShowIPAddresses = 0; public $DisplayLabels = 0; public $ShareLabelFilters = 0; public $ViewSubProjectsLink = 0; @@ -130,7 +129,6 @@ public function Save(): bool 'emailtesttimingchanged' => (int) $this->EmailTestTimingChanged, 'emailbrokensubmission' => (int) $this->EmailBrokenSubmission, 'emailredundantfailures' => (int) $this->EmailRedundantFailures, - 'showipaddresses' => (int) $this->ShowIPAddresses, 'displaylabels' => (int) $this->DisplayLabels, 'sharelabelfilters' => (int) $this->ShareLabelFilters, 'viewsubprojectslink' => (int) $this->ViewSubProjectsLink, @@ -219,7 +217,6 @@ public function Fill(): void $this->EmailTestTimingChanged = $project->emailtesttimingchanged; $this->EmailBrokenSubmission = $project->emailbrokensubmission; $this->EmailRedundantFailures = $project->emailredundantfailures; - $this->ShowIPAddresses = $project->showipaddresses; $this->DisplayLabels = $project->displaylabels; $this->ShareLabelFilters = $project->sharelabelfilters; $this->ViewSubProjectsLink = $project->viewsubprojectslink; diff --git a/app/cdash/tests/test_actualtrilinossubmission.php b/app/cdash/tests/test_actualtrilinossubmission.php index ef06c5f814..4bfd75da1d 100644 --- a/app/cdash/tests/test_actualtrilinossubmission.php +++ b/app/cdash/tests/test_actualtrilinossubmission.php @@ -22,7 +22,6 @@ public function createProjectWithName($project) 'Name' => $project, 'Description' => $project . ' project created by test code in file [' . __FILE__ . ']', 'EmailBrokenSubmission' => '1', - 'ShowIPAddresses' => '1', 'DisplayLabels' => '1', 'NightlyTime' => '21:00:00 America/New_York', 'ShareLabelFilters' => '1']; diff --git a/database/migrations/2025_12_30_195827_drop_showipaddresses_column.php b/database/migrations/2025_12_30_195827_drop_showipaddresses_column.php new file mode 100644 index 0000000000..4e5d111d95 --- /dev/null +++ b/database/migrations/2025_12_30_195827_drop_showipaddresses_column.php @@ -0,0 +1,14 @@ + -