Skip to content

Commit

Permalink
removed index for missed columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Yorchi committed Mar 19, 2018
1 parent c138e43 commit f1eb834
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `Tax` will be documented in this file

## 1.1.1 - 2018-03-19

- Fix error in migrations, removed index for missed columns

## 1.1.0 - 2018-03-18

- Added support for calculate amounts of models
Expand Down
2 changes: 0 additions & 2 deletions database/migrations/create_taxes_tables.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ class CreateTaxesTables extends Migration
$table->string('name');
$table->boolean('active')->default(true);
$table->timestamps();

$table->index(["model_type", "model_id"]);
});

Schema::create('taxes', function (Blueprint $table) {
Expand Down

0 comments on commit f1eb834

Please sign in to comment.