Passed
Push — develop ( 509a81...899aca )
by nguereza
02:24
created
platine/migrations/20230802_152529_add_oauth2_authorization_codes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
platine/migrations/20230802_144938_add_oauth2_scopes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
platine/migrations/20230802_152020_add_oauth2_refresh_tokens_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
platine/migrations/20230802_151233_add_oauth2_access_tokens_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
platine/migrations/20230802_150106_add_oauth2_clients_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.