Skip to content

Commit

Permalink
Migration Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rockhopsoft committed Jan 29, 2021
1 parent df2f627 commit 9e3902b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions src/Controllers/Admin/AdminSubsController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php
/**
* AdminSubsController is the admin class responsible for
* displaying survey submissions in a generalized way.
*
* Survloop - All Our Data Are Belong
* @package rockhopsoft/survloop
* @author Morgan Lesko <rockhoppers@runbox.com>
* @since v0.0.1
*/
namespace RockHopSoft\Survloop\Controllers\Admin;

use RockHopSoft\Survloop\Controllers\Admin\AdminController;

class AdminSubsController extends AdminController
{



}
6 changes: 3 additions & 3 deletions src/Database/2020_09_14_000000_create_survloop_tables.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php
// generated from /resources/views/vendor/survloop/admin/db/export-laravel-gen-migration.blade.php

use DB; // \Illuminate\Support\Facades\DB
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\DB;

class CreateSurvloopTables extends Migration
{
Expand Down Expand Up @@ -210,8 +210,8 @@ public function up()
{
$table->increments('cond_node_id');
$table->integer('cond_node_cond_id')->unsigned()->nullable();
$table->integer('cond_node_node_id')->unsigned()->nullable();
$table->integer('cond_node_loop_id')->unsigned()->nullable();
$table->integer('cond_node_node_id')->nullable();
$table->integer('cond_node_loop_id')->nullable();
$table->timestamps();
$table->index('cond_node_cond_id');
});
Expand Down

0 comments on commit 9e3902b

Please sign in to comment.