Completed
Push — master ( 27b794...da927d )
by Joao
03:27
created
src/Migrations/2016_01_15_121700_create_permissions_tables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
 
17
-        Schema::create('Permission', function (Blueprint $table) {
17
+        Schema::create('Permission', function(Blueprint $table) {
18 18
             $table->increments('id');
19 19
             $table->string('key', 100);
20 20
             $table->string('description', 250);
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
             $table->unique('key');
23 23
         });
24 24
 
25
-        Schema::create('Permission_Entity', function (Blueprint $table) {
25
+        Schema::create('Permission_Entity', function(Blueprint $table) {
26 26
             $table->increments('id');
27 27
             $table->text('permission');
28 28
 
Please login to merge, or discard this patch.