public function test_big_increments()
 {
     $this->dbal->shouldReceive('addColumn')->with('id', 'bigint', ['autoIncrement' => true, 'unsigned' => true]);
     $this->dbal->shouldReceive('setPrimaryKey')->with(['id'], null);
     $this->table->bigIncrements('id');
 }