Fixes and tests for transactions.

This commit is contained in:
James Cole
2014-07-09 13:45:27 +02:00
parent 61f7fbe951
commit 3fc793f014
3 changed files with 24 additions and 3 deletions

View File

@@ -15,7 +15,6 @@ class CreateComponentTransactionTable extends Migration {
Schema::create('component_transaction', function(Blueprint $table)
{
$table->increments('id');
$table->timestamps();
$table->integer('component_id')->unsigned();
$table->integer('transaction_id')->unsigned();