Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_07_01_043125_create_sd_field_value_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
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_field_values', function (Blueprint $table) {
15
+        Schema::create('sd_field_values', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('field_id')->unsigned()->nullable();
18 18
             $table->foreign('field_id')->references('id')->on('sd_form_fields');
Please login to merge, or discard this patch.
database/migrations/2016_07_01_043044_create_sd_form_field_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
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_form_fields', function (Blueprint $table) {
15
+        Schema::create('sd_form_fields', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('label');
Please login to merge, or discard this patch.
database/migrations/2016_05_30_085022_create_sd_attachments_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
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_attachments', function (Blueprint $table) {
15
+        Schema::create('sd_attachments', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('saved')->unsigned();
18 18
             $table->string('owner');
Please login to merge, or discard this patch.
database/migrations/2016_05_31_100605_create_sd_release_priority_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
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_release_priorities', function (Blueprint $table) {
15
+        Schema::create('sd_release_priorities', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2016_06_09_133929_create_sd_problem_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      * @return void
12 12
      */
13 13
     public function up() {
14
-        Schema::create('sd_problem', function (Blueprint $table) {
14
+        Schema::create('sd_problem', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->string('from');
17 17
             $table->string('subject');
Please login to merge, or discard this patch.
database/migrations/2016_05_28_134915_create_sd_products_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
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_products', function (Blueprint $table) {
15
+        Schema::create('sd_products', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('description');
Please login to merge, or discard this patch.
database/migrations/2016_05_31_102602_create_sd_change_types_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
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_change_types', function (Blueprint $table) {
15
+        Schema::create('sd_change_types', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
migrations/2016_05_30_095427_create_sd_location_categories_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
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_location_categories', function (Blueprint $table) {
15
+        Schema::create('sd_location_categories', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('parent_id')->nullable();
18 18
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2016_07_03_153743_create_sd_asset_form_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
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_asset_form', function (Blueprint $table) {
15
+        Schema::create('sd_asset_form', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('asset_id');
18 18
             $table->string('key');
Please login to merge, or discard this patch.