Completed
Pull Request — master (#14)
by Hugo
10:35
created
Eloquent/migrations/2015_06_17_110055_create_oauth_access_tokens_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('oauth_access_tokens', function (Blueprint $table) {
16
+        Schema::create('oauth_access_tokens', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('session_id')->unsigned();
19 19
             $table->string('token');
Please login to merge, or discard this patch.
src/Eloquent/migrations/2015_06_17_105107_create_oauth_sessions_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('oauth_sessions', function (Blueprint $table) {
16
+        Schema::create('oauth_sessions', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('client_id')->unsigned();
19 19
             $table->string('owner_type');
Please login to merge, or discard this patch.
src/Eloquent/migrations/2015_06_17_104848_create_oauth_clients_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('oauth_clients', function (Blueprint $table) {
16
+        Schema::create('oauth_clients', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('key')->unique();
19 19
             $table->string('secret');
Please login to merge, or discard this patch.
Eloquent/migrations/2015_06_17_110112_create_oauth_refresh_tokens_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('oauth_refresh_tokens', function (Blueprint $table) {
16
+        Schema::create('oauth_refresh_tokens', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('access_token_id')->unsigned();
19 19
             $table->string('token');
Please login to merge, or discard this patch.