Skip to content

Commit

Permalink
Merge pull request #39 from envor/main
Browse files Browse the repository at this point in the history
Main
  • Loading branch information
inmanturbo authored Jul 31, 2024
2 parents c8c848e + ec518ee commit 8637871
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to `one-app` will be documented in this file.

## v1.0.30 - 2024-07-10

### What's Changed

* bootstrap shared migrations middleware by @inmanturbo in https://github.com/envor/one-app/pull/38

**Full Changelog**: https://github.com/envor/one-app/compare/v1.0.29...v1.0.30

## v1.0.29 - 2024-07-10

### What's Changed
Expand Down
5 changes: 0 additions & 5 deletions src/OneAppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ class OneAppServiceProvider extends PackageServiceProvider
{
public function configurePackage(Package $package): void
{
/*
* This class is a Package Service Provider
*
* More info: https://github.com/spatie/laravel-package-tools
*/
$package
->name('one-app')
->hasCommands([
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@

return new class extends Migration
{
public function getConnection()
{
return config('database.platform', 'testing');
}

public function up()
{
Schema::create('datastores', function (Blueprint $table) {
Expand All @@ -23,4 +18,9 @@ public function up()
$table->timestamps();
});
}

public function down()
{
Schema::dropIfExists('datastores');
}
};

0 comments on commit 8637871

Please sign in to comment.