Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
tonning committed Nov 23, 2023
1 parent 127025c commit 909063c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,15 @@

use Spatie\LaravelSettings\Migrations\SettingsMigration;

class CreateSkeletonSettings extends SettingsMigration
return new class extends SettingsMigration
{
public function up(): void
{
$this->migrator->add('skeleton.enabled', false);
// $this->migrator->add('skeleton.url', '');
// $this->migrator->addEncrypted('skeleton.access_token', '');
}

public function down()
{
$this->migrator->delete('skeleton.enabled');
// $this->migrator->delete('skeleton.url');
// $this->migrator->delete('skeleton.access_token');
}
}
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skeleton",
"version": "1.1.0",
"version": "0.0.0",
"description": "[![Latest Version on Packagist](https://img.shields.io/packagist/v/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug) [![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/:vendor_slug/:package_slug/run-tests?label=tests)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3Arun-tests+branch%3Amain) [![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/:vendor_slug/:package_slug/Check%20&%20fix%20styling?label=code%20style)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A\"Check+%26+fix+styling\"+branch%3Amain) [![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)",
"directories": {
"test": "tests"
Expand Down

0 comments on commit 909063c

Please sign in to comment.