Skip to content

Commit

Permalink
Merge pull request #3 from guissilveira/start-package
Browse files Browse the repository at this point in the history
First stable version.
  • Loading branch information
GuiSSilveira committed Jul 14, 2016
2 parents bf75faa + f6730b0 commit f97748d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

Require this package with composer using the following command:
```bash
composer require guissilveira/laravel-pgsql-multi-tenant-migrate:dev-master
composer require guissilveira/laravel-pgsql-multi-tenant-migrate
```

After updating composer, add the service provider to the `providers` array in `config/app.php`
```php
Guissilveira\Laravel\Commands\MultiTenantMigrateServiceProvider::class
```

Run artisan command:
```bash
php artisan tenant:migrate
```
4 changes: 2 additions & 2 deletions src/TenantMigrationCommand.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace Guissilveira\Laravel\Commands
namespace Guissilveira\Laravel\Commands;

use Illuminate\Console\Command;
use Pacuna\Schemas\Facades\PGSchema
use Pacuna\Schemas\Facades\PGSchema;
use DB;

class TenantMigrationCommand extends Command
Expand Down

0 comments on commit f97748d

Please sign in to comment.