Skip to content

Commit

Permalink
Fix SQL error
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxudo committed Feb 23, 2024
1 parent 8990f85 commit d3b52fe
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 21 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Provides information about third party extensions (kexts) and system extensions

Table Schema
-----
* name - varchar(255) - Name of the extension
* bundle_id - varchar(255) - Bundle ID of the extension
* version - varchar(255) - Version of the extension
* path - text - Directory of extension
Expand Down
2 changes: 1 addition & 1 deletion extensions_model.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function __construct($serial='')
$this->rs['path'] = '';
$this->rs['developer'] = '';
$this->rs['teamid'] = '';
$this->rs['codesign'] = '';
// $this->rs['codesign'] = ''; // This column is deprecated and not used
$this->rs['executable'] = '';
$this->rs['boot_uuid'] = null;
$this->rs['developer_mode'] = null; // Boolean
Expand Down
20 changes: 0 additions & 20 deletions migrations/1000_00_00_000001_extensions_php_migrations.php

This file was deleted.

1 change: 1 addition & 0 deletions migrations/2018_02_12_164431_extensions_add_teamid.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public function down()
{
$capsule = new Capsule();
$capsule::schema()->table($this->tableName, function (Blueprint $table) {
$table->dropColumn('developer');
$table->dropColumn('teamid');
});
}
Expand Down

0 comments on commit d3b52fe

Please sign in to comment.