@@ -12,7 +12,7 @@ |
||
12 | 12 | public function up(): void |
13 | 13 | { |
14 | 14 | //Action when migrate up |
15 | - $this->create('oauth_authorization_codes', function (CreateTable $table) { |
|
15 | + $this->create('oauth_authorization_codes', function(CreateTable $table) { |
|
16 | 16 | $table->string('authorization_code', 100) |
17 | 17 | ->notNull() |
18 | 18 | ->description('The authorization code') |
@@ -12,7 +12,7 @@ |
||
12 | 12 | public function up(): void |
13 | 13 | { |
14 | 14 | //Action when migrate up |
15 | - $this->create('oauth_scopes', function (CreateTable $table) { |
|
15 | + $this->create('oauth_scopes', function(CreateTable $table) { |
|
16 | 16 | $table->integer('id') |
17 | 17 | ->autoincrement() |
18 | 18 | ->primary(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | public function up(): void |
13 | 13 | { |
14 | 14 | //Action when migrate up |
15 | - $this->create('oauth_refresh_tokens', function (CreateTable $table) { |
|
15 | + $this->create('oauth_refresh_tokens', function(CreateTable $table) { |
|
16 | 16 | $table->string('refresh_token', 100) |
17 | 17 | ->notNull() |
18 | 18 | ->description('The refresh token') |
@@ -12,7 +12,7 @@ |
||
12 | 12 | public function up(): void |
13 | 13 | { |
14 | 14 | //Action when migrate up |
15 | - $this->create('oauth_access_tokens', function (CreateTable $table) { |
|
15 | + $this->create('oauth_access_tokens', function(CreateTable $table) { |
|
16 | 16 | $table->string('access_token', 100) |
17 | 17 | ->notNull() |
18 | 18 | ->description('The access token') |
@@ -12,7 +12,7 @@ |
||
12 | 12 | public function up(): void |
13 | 13 | { |
14 | 14 | //Action when migrate up |
15 | - $this->create('oauth_clients', function (CreateTable $table) { |
|
15 | + $this->create('oauth_clients', function(CreateTable $table) { |
|
16 | 16 | $table->string('id', 100) |
17 | 17 | ->notNull() |
18 | 18 | ->description('The client id') |