Skip to content

Commit

Permalink
Seeder & Migration Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rockhopsoft committed Jan 29, 2021
1 parent 7f8d89c commit 41b4c18
Show file tree
Hide file tree
Showing 3 changed files with 239 additions and 7,947 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
}
],
"require": {
"rockhopsoft/survloop": "*@dev",
"flexyourrights/openpolice-departments": "*@dev",
"flexyourrights/openpolice-website": "*@dev"
"rockhopsoft/survloop": "0.*",
"flexyourrights/openpolice-departments": "0.*",
"flexyourrights/openpolice-website": "0.*"
},
"autoload": {
"psr-4": {
Expand Down
5 changes: 0 additions & 5 deletions src/Database/2021_01_28_000000_create_openpolice_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,12 @@ public function up()
Schema::create('op_complaints', function(Blueprint $table)
{
$table->increments('com_id');
$table->integer('com_submission_progress')->nullable();
$table->string('com_tree_version')->nullable();
$table->integer('com_user_id')->nullable();
$table->integer('com_user_id')->nullable();
$table->integer('com_user_id')->nullable();
$table->integer('com_public_id')->nullable();
$table->integer('com_status')->unsigned()->nullable();
$table->index('com_status');
$table->integer('com_type')->unsigned()->nullable();
$table->index('com_type');
$table->integer('com_user_id')->unsigned()->nullable();
$table->integer('com_incident_id')->unsigned()->nullable();
$table->integer('com_scene_id')->unsigned()->nullable();
$table->integer('com_publish_officer_name')->nullable();
Expand Down
Loading

0 comments on commit 41b4c18

Please sign in to comment.